如何将我的ImageView高度设置为与屏幕分辨率或全屏相同?

时间:2014-04-25 03:35:56

标签: android eclipse imageview height

这是我的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>

1 个答案:

答案 0 :(得分:2)

android:scaleType值设为fitXY而不是fitCenter

android:scaleType = "fitXY"