これがレイアウトの概要です
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/image_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:scaleType="fitXY"
android:background="@android:color/transparent"
android:src="@drawable/abox"/>
<LinearLayout
android:id="@+id/lin_lt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="10"
android:orientation="horizontal"
android:layout_below="@+id/image_1">
<ImageView
android:id="@+id/image_2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="5"
android:scaleType="fitXY"
android:src="@drawable/abox"
android:background="@android:color/transparent"/>
<ImageView
android:id="@+id/image_3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="5"
android:scaleType="fitXY"
android:src="@drawable/abox"
android:background="@android:color/transparent"/>
</LinearLayout>
<ImageView
android:id="@+id/image_4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/lin_lt"
android:scaleType="fitXY"
android:src="@drawable/abox"
android:background="@android:color/transparent"/>
</RelativeLayout>
画面サイズ/密度グループごとに適切なサイズの画像を提供すると、 LinearLayout を取り除くことができます。また、各画面サイズ/密度に適切なサイズの画像を使用するか、9 パッチ画像を使用することを常にお勧めします。