0

我有我奇怪的问题。或者也许我弄错了。但我ImageView的有点像填充物。它看起来像这样:

在此处输入图像描述

所以“MyImage”应该与最上面对齐。但是,当我检查图形布局时,图像被调整得更低。所以就像我的整个图像是绿色的虚线。

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/master_background">

<ImageView
    android:id="@+id/topPage"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/image" />

</RelativeLayout>

这是我的代码。我试图更改src为,background但我的图像已调整。如何调整图像。此应用程序没有窗口标题。

4

1 回答 1

1

android:adjustViewBounds="true"在您的图像视图中使用。

<ImageView
    android:id="@+id/topPage"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    android:src="@drawable/image" />
于 2013-07-11T11:56:21.170 回答