1

垂直に配置された LinearLayout に 4 つの imageView を追加しようとしています。4 つの画像を間隔をあけずに完全に重ねて配置したいと考えています。問題は、画像の上下に空白があることです。多分これは、画像がスケーリングされる方法と関係がありますか?

ここに私の情報源があります:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <com.google.ads.AdView
         xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
         android:id="@+id/add1"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         ads:adSize="BANNER"
         ads:adUnitId=""
         ads:loadAdOnCreate="true"
         ads:testDevices="" />

    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/add1" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent" 
            android:orientation="vertical" >

            <ImageView
                android:id="@+id/imageView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/menu_graphic_1"/>

             <ImageView
                 android:id="@+id/imageView2"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:src="@drawable/menu_graphic_2" />
            <ImageView
                 android:id="@+id/imageView1"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:src="@drawable/menu_graphic_3" />

             <ImageView
                 android:id="@+id/imageView2"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:src="@drawable/menu_graphic_4" />

        </LinearLayout>

     </ScrollView>

</RelativeLayout>
4

1 に答える 1

1

アソーク そうですね。Android:adjustViewBounds="true" を ImageView に追加すると、問題が修正されました:)

于 2012-11-04T01:50:36.637 に答える