我试图让我的应用在不同的设备上看起来不错。我在 Galaxy S2 和 Google Nexus 7 上尝试过。我的图像覆盖了 theS2 的宽度,但在 Nexus 上却没有。为什么?我在这里做错了什么?
这是我的 ImageView 的代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include
android:id="@+id/include"
layout="@layout/actionbar"/>
<ImageView
android:id="@+id/imageView1"
android:layout_height="match_parent"
android:layout_width="fill_parent"
android:layout_marginTop="44dp"
android:src="@drawable/rect"/>
</RelativeLayout>