我有以下布局:
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" >
<ImageView
android:id="@+id/personal_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/dom_logo_new" />
<ImageView
android:id="@+id/round_corner_top_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/corner_white_left_top" />
<ImageView
android:id="@+id/round_corner_top_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/corner_white_right_top" />
<ImageView
android:id="@+id/round_corner_bottom_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:src="@drawable/corner_white_left_bottom" />
<ImageView
android:id="@+id/round_corner_bottom_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:src="@drawable/corner_white_right_bottom" />
</RelativeLayout>
有 1 个主图像 (personal_image) 和 4 个小图像。
我需要在屏幕的中心水平显示主图像(personal_image),每个角有 4 个图像(左上角、右上角、左下角、右下角)。但RelativeLayout
具有所有屏幕的宽度和高度。
如何设置相同width
和personal_imageheight
的和?RelativeLayout
width
height