我在我的申请中添加了logo
。但我在little and bad images
中看到了s4 and tablet devices
。 xxhdpi
文件夹中的图片和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
答案 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" />