Итак, это мой текущий LinearLayout
:
с кодом XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="8dp">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="8dp">
<TextView
android:id="@+id/crime_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Crime Title" />
<TextView
android:id="@+id/crime_date"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Crime date" />
</LinearLayout>
<ImageView
android:id="@+id/crime_police"
android:layout_width="117dp"
android:layout_height="50dp"
android:layout_gravity="fill_horizontal"
android:baselineAlignBottom="false"
android:src="@mipmap/handcuffs" />
</LinearLayout>
Это ближайший Iдобрались до моей цели, которая состоит в том, чтобы переместить ImageView в крайнее правое положение в этом LinearLayout.Чтобы я смог создать следующий пример с помощью RecyclerView:
Можно ли добиться этого, используя только LinearLayout?Или я должен изучить использование других типов макетов в дополнение к LinearLayout, который состоит из Crime Title
и Crime date
?
Заранее спасибо.