我在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>
我在模拟器上测试我的程序。模拟器有这个问题吗?如果我在手机上测试程序,问题会解决吗?谢谢。干杯