2

在我的 xml 文件中,我正在使用它。我的问题是,为什么在较小的屏幕上使用它时,屏幕顶部和图像之间会出现如此巨大的差距。但是在大屏幕上一切都很好。

编辑:我认为问题是因为重量。有任何想法吗?

<LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

    <ImageView
        android:id="@+id/area"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="5dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:layout_weight="1"
        android:src="@drawable/area_selector" 
        android:contentDescription="@string/app_name"/>

    <ImageView
        android:id="@+id/volume"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="5dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:layout_weight="1"
        android:src="@drawable/volume_selector" 
        android:contentDescription="@string/app_name"/>

    </LinearLayout>
4

2 回答 2

3

On Teovalds behalf, the commented answer as an answer: Try adding android:adjustViewBounds="true" to the imageview tags.

于 2012-10-01T11:29:36.597 回答
1

还可以删除添加的 magintop = 10 dp 以最小化差距!

于 2012-10-01T11:23:41.310 回答