私は次のレイアウトを持っています:
<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
、すべての画面の幅と高さがあります。
同じのとpersonal_imageのwidth
とを設定するにはどうすればよいですか??height
RelativeLayout
width
height