我有一个包含相对布局的滚动视图。滚动视图具有渐变背景并设置为填充父级。相对布局也有一个背景,我希望它也能填满屏幕,但android:layout_height="fill_parent"
不适用于相对布局。
如何配置RelativeLayout
在任何屏幕分辨率下跨越整个屏幕高度?
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/parentLayout"
style="@style/mainLayoutStyle"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/home_activity_bg"
android:paddingBottom="10dp" >
</RelativeLayout>
</ScrollView>
更新:
我删除了所有内容,只留下了 ScrollView 和 RelativeLayout,出于某种原因,在 Galaxy S4 上,图像在结束之前被剪切(您可以根据蓝线看到布局本身在结束之前结束):