我的相对布局背景没有拉伸全屏

KCR*_*aju 0 android relativelayout android-layout

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

我的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" >
Run Code Online (Sandbox Code Playgroud)

小智 9

为scrollView提供android:fillViewPort = true.

  • 这应该是正确答案,供参考:http://www.curious-creature.org/2010/08/15/scrollviews-handy-trick/ (2认同)