如何将ImageView附加到RelativeLayout的右边框

时间:2016-03-28 18:24:15

标签: android android-imageview android-relativelayout android-gravity

我想将ImageViews相互附加。我试图设置重力和alignParentRight / alignParentLeft,但不能实现我的目标。为简单起见,我为ViewGroups设置了颜色背景。你有任何想法如何完成它?

enter image description here

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/share_dope_max_image_height"
        android:layout_marginTop="@dimen/share_dope_margin_3"
        android:background="#0DD"
        android:orientation="horizontal"
        android:paddingLeft="@dimen/share_dope_images_container_horizontal_padding"
        android:paddingRight="@dimen/share_dope_images_container_horizontal_padding">

        <RelativeLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="0.5"
            android:background="#D0D"
            android:gravity="right"
            >
                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_alignParentRight="true"
                    android:src="@drawable/girl3" />

        </RelativeLayout>

        <RelativeLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="0.5"
            android:background="#DD0"
            android:gravity="left"
            >

                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_alignParentLeft="true"
                    android:src="@drawable/girl4" />

        </RelativeLayout>

    </LinearLayout>

2 个答案:

答案 0 :(得分:1)

试试这个:

  • 将LinearLayout用作父
  • 将布局方向设置为水平
  • 将imageView并排放置
  • 将每个imageView的权重设置为相同的数字,例如1

你应该同时拥有两个图像

答案 1 :(得分:1)