这个问题已经被问过很多次了,但没有一个答案有帮助。
Android 在ImageView
. 对于不同屏幕尺寸的设备也是如此。我也尝试过更改图像的分辨率,但无济于事。
作为参考,这是我的 xml 代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Starter" >
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:contentDescription="cat"
android:scaleType="fitXY"
android:src="@drawable/splash" />
</LinearLayout>
还附上了图像的截图。
如何删除这些空格?
谢谢。