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>
エミュレーターでプログラムをテストします。この問題はエミュレータにもありますか? 電話でプログラムをテストすると、問題は解決しますか? ありがとうございます