0

你好在我的应用程序中相对布局背景没有拉伸全屏。它显示如下在此处输入图像描述

我的 xml 文件::

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#CACACA"
android:orientation="vertical" >
4

3 回答 3

9

为滚动视图提供 android:fillViewPort = true。

于 2013-06-06T06:49:51.607 回答
2

试试这个:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#CACACA"
    android:fillViewPort="true" >

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
    </RelativeLayout>

</ScrollView>
于 2013-06-06T07:11:50.930 回答
-1

试试这个:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#CACACA">


<RelativeLayout
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical" >

......
于 2013-06-06T06:31:28.997 回答