1

我正在为我的应用程序创建一个启动画面,但我遇到了一个问题:我将图像放入 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>
4

1 回答 1

3

添加android:scaleType="fitXY"ImageView

于 2012-05-25T03:02:15.967 回答