Android imageview三星s4没有伸展

时间:2014-12-25 12:08:20

标签: android layout imageview drawable

我在我的申请中添加了logo。但我在little and bad images中看到了s4 and tablet devicesxxhdpi文件夹中的图片和res:577*217 ...

<ImageView
            android:id="@+id/ford"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/animasyon"
            android:adjustViewBounds="true"
            android:contentDescription="@string/hello_world"
            android:scaleType="fitXY"
            android:src="@drawable/ford" />

1-nexus one

2-S4

1 个答案:

答案 0 :(得分:2)

使用match_parent在所有设备上全屏显示图像。

<ImageView
        android:id="@+id/ford"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/animasyon"
        android:adjustViewBounds="true"
        android:contentDescription="@string/hello_world"
        android:scaleType="fitXY"
        android:src="@drawable/ford" />