RelativeLayout で 2 つのイメージビューを配置する際に問題があります。
これらの 2 つの画像は、スペースなしで他の画像に近づける必要があります。このような:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_portrait"
android:orientation="vertical" >
<!-- header -->
<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/desc"
android:src="@drawable/header" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageView
android:id="@+id/dia1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/desc"
android:src="@drawable/dia1" />
<ImageView
android:id="@+id/dia2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/dia1"
android:contentDescription="@string/desc"
android:src="@drawable/dia2" />
</RelativeLayout>
私は何を間違っていますか?