我正在为我的应用程序创建一个启动画面,但我有一个问题: 我把图像放在drawable中并不占用智能手机的整个屏幕。 怎么解决?
这是我的xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout android:id="@+id/RelativeLayout01"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:gravity="fill"
android:layout_gravity="center">
<ImageView android:id="@+id/ImageView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/fundo" />
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:3)
将android:scaleType="fitXY"
添加到ImageView