0

我在RelativeLayout 顶部有一个ImageView,但是RelativeLayout 中的图像比页面的左右空间有空间(这个空间有点小)。我不知道如何解决这个问题:(如果我设置的图像宽度更大,图像的空间又比页面的左右空间要大。为什么?

<?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">

    <ImageView
    android:id="@+id/registerAction"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="0dp"
    android:layout_marginRight="0dp"
    android:src="@drawable/testing" 
    android:adjustViewBounds="true"/>
</RelativeLayout>

我在模拟器上测试我的程序。模拟器有这个问题吗?如果我在手机上测试程序,问题会解决吗?谢谢。干杯

4

2 回答 2

0

请检查您的图像。它的边界可能有透明的或空白的空间。对齐图像也取决于您的图像内容

于 2013-09-16T09:11:19.947 回答
0

请尝试使用设备,它将解决您的问题。

请为您的 ImageView 添加一个属性,android:scaleType="fitXY"。

于 2013-09-16T08:44:01.503 回答