0

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>

私は何を間違っていますか?

更新 dia1 は: ダイヤ1 dia2 は: dia2

4

2 に答える 2