我的relative layout
有ScrollView
,其中包含另一个RelativeLayout
。子相对布局layout_height
设置为match_parent
,但它的设置为wrap_content
这是xml代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.digitnomics.isite.Signage"
tools:showIn="@layout/activity_signage">
<ScrollView
android:id="@+id/scrollView2"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
这里是布局的预览
ScrollView设置为match_parent
Child RelativeLayout设置为match_parent
如何强制Child Relative layout layout_height
填充整个高度
答案 0 :(得分:1)
在ScrollView集中
android:fillViewport="true"