Исправление ImageView в крайнем правом месте в LinearLayout - PullRequest
0 голосов
/ 06 сентября 2018

Итак, это мой текущий LinearLayout:
enter image description here

с кодом 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:
enter image description here

Можно ли добиться этого, используя только LinearLayout?Или я должен изучить использование других типов макетов в дополнение к LinearLayout, который состоит из Crime Title и Crime date?
Заранее спасибо.

Ответы [ 3 ]

0 голосов
/ 06 сентября 2018
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_toLeftOf="@id/crime_police"
        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:layout_alignParentRight="true"
        android:src="@mipmap/ic_launcher" />
</RelativeLayout>  
0 голосов
/ 06 сентября 2018

Попробуйте:

<?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
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="9"
            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="0dp"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_gravity="center_vertical"
            android:layout_weight="1"
            android:src="@mipmap/ic_launcher" />
    </LinearLayout>
</LinearLayout>

выход

enter image description here

0 голосов
/ 06 сентября 2018

Не нужно ничего менять в макете

Просто используйте android:layout_weight="1" внутри вашего второго LinearLayout это будет работать

Попробуйте это

<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_weight="1"
        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="@drawable/ic_menu_send" />
</LinearLayout>

OUTPUT

enter image description here

...