将ImageView固定在LinearLayout的最右边

时间:2018-09-06 11:57:34

标签: android android-layout android-linearlayout

所以,这是我当前的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>  

这是我最接近我的目标的目标,它是将ImageView移到此LinearLayout中的最右边。这样我就可以使用RecyclerView创建以下示例:
enter image description here

是否可以仅通过使用LinearLayout来实现?还是我需要研究使用由Crime TitleCrime date组成的LinearLayout之外的其他类型的Layout?
预先感谢。

3 个答案:

答案 0 :(得分:1)

无需更改布局中的任何内容

只需在第二个LinearLayout内使用android:layout_weight="1"即可

尝试一下

<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>

输出

enter image description here

答案 1 :(得分:1)

尝试一下:

<?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

答案 2 :(得分:0)

<?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>