如何将 ImageView 附加到 RelativeLayout 的右边框
How to attach ImageView to right border of RelativeLayout
我想将 ImageView 相互附加。我尝试设置重力和 alignParentRight/alignParentLeft 但无法实现我的目标。为简单起见,我为 ViewGroups 设置了颜色背景。您对如何完成它有任何想法吗?
<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>
试试这个:
- 使用 LinearLayout 作为父级
- 将布局方向设置为水平
- 并排放置 imageView
- 将每个 imageView 的权重设置为相同的数字,例如1
你应该将两张图片并排放置
在此处找到此问题的确切解决方案:http://www.ryadel.com/en/android-proportionally-stretch-imageview-fit-whole-screen-width-maintaining-aspect-ratio/
我想将 ImageView 相互附加。我尝试设置重力和 alignParentRight/alignParentLeft 但无法实现我的目标。为简单起见,我为 ViewGroups 设置了颜色背景。您对如何完成它有任何想法吗?
<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>
试试这个:
- 使用 LinearLayout 作为父级
- 将布局方向设置为水平
- 并排放置 imageView
- 将每个 imageView 的权重设置为相同的数字,例如1
你应该将两张图片并排放置
在此处找到此问题的确切解决方案:http://www.ryadel.com/en/android-proportionally-stretch-imageview-fit-whole-screen-width-maintaining-aspect-ratio/