线性布局不会填满整个屏幕

时间:2016-09-16 20:03:42

标签: android xml layout fragment


为什么线性布局不会填满整个屏幕?
正如您所看到的,我在线性布局中使用了匹配父项 如果我删除滚动条没有任何变化。该按钮不在屏幕的底部。
main_activity.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/black"
    tools:context="com.sarahp.demo.MainActivity">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout                                 ----------> HERE
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <TextView
                android:id="@+id/textview_demo"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginBottom="32dp"
                android:layout_marginTop="32dp"
                android:text="@string/demo"
                android:textSize="42dp"/>

            <RelativeLayout
                android:id="@+id/fragment_container_a"
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>

            <RelativeLayout
                android:id="@+id/fragment_container_b"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_alignParentBottom="true"
                android:background="@color/transparent"/>

        </LinearLayout>
    </ScrollView>    
</RelativeLayout>

F A是片段部分。 enter image description here

2 个答案:

答案 0 :(得分:1)

  

android:fillViewport="true"提供给您的ScrollView。

您的xml如下所示。的 Main_Activity.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true">


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


        <TextView
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:text="Test Demo"
            android:textStyle="bold"
            android:gravity="center"/>

        <RelativeLayout
            android:id="@+id/fragment1"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="0.5"
            android:background="@drawable/border_image">
             <TextView
                 android:layout_width="match_parent"
                 android:layout_height="100dp"
                 android:gravity="center"
                 android:text="Test text Fragement1" />
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/fragment2"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="0.5"
            >
            <TextView
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:gravity="center"
                android:text="Test text Fragement2" />
        </RelativeLayout>

    </LinearLayout>
</ScrollView>
</RelativeLayout>

答案 1 :(得分:0)

删除相对布局

<ScrollView

        android:layout_width="match_parent"
        android:layout_height="match_parent">

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

            <TextView
                android:id="@+id/textview_demo"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginBottom="32dp"
                android:layout_marginTop="32dp"
                android:text="@string/demo"
                android:textSize="42dp"/>

            <RelativeLayout
                android:id="@+id/fragment_container_a"
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>

            <RelativeLayout
                android:id="@+id/fragment_container_b"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_alignParentBottom="true"
                android:background="@color/transparent"/>

        </LinearLayout>
    </ScrollView>