这是我的XML文件,用于设置与屏幕分辨率相同的高度。但是,当我运行此应用程序时,屏幕上会留下黑色空间。谁可以帮我这个事?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="#000000"
android:orientation="vertical" >
<ImageView
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:src="@drawable/info"
android:scaleType = "fitCenter"
/>
</RelativeLayout>
答案 0 :(得分:2)
将android:scaleType
值设为fitXY
而不是fitCenter
。
android:scaleType = "fitXY"