设置为match_parent的相对布局高度用作wrap_content

时间:2016-03-20 21:50:35

标签: android android-layout relative android-relativelayout

我的relative layoutScrollView,其中包含另一个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

enter image description here

Child RelativeLayout设置为match_parent

enter image description here

如何强制Child Relative layout layout_height填充整个高度

1 个答案:

答案 0 :(得分:1)

在ScrollView集中

android:fillViewport="true"