在滚动视图下方添加小部件

时间:2017-11-25 09:37:52

标签: android android-layout android-scrollview

我想在顶部添加一些Android小部件,然后是Scrollview和Scrollview下面的一些小部件。完全填充后,Scrollview开始占用为小部件分配的空间(应该是在Scrollview之后)。最终,这些小部件开始出现不正确。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    tools:layout_editor_absoluteX="8dp"
    tools:layout_editor_absoluteY="8dp"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:weightSum="10">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Enter Data"
        android:gravity="center_horizontal"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Submit"
        android:layout_weight="1"/>
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="6">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:background="@android:color/holo_green_light">
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_green_light"/>
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_blue_light"/>
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_green_light"/>
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_blue_light"/>
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_green_light"/>
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_blue_light"/>
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_green_light"/>
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_blue_light"/>
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_green_light"/>
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_blue_light"/>
            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="new Button"
                android:background="@android:color/holo_green_light"/>
        </LinearLayout>
    </ScrollView>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Enter Data Again"
        android:gravity="center_horizontal"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Submit Again"
        android:layout_weight="1"/>

</LinearLayout>

In the following picture it can be seen that the Scollview uses the space allocated for widgets below it.

1 个答案:

答案 0 :(得分:0)

更改您的布局代码,如下所示:

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:layout_editor_absoluteX="8dp"
    tools:layout_editor_absoluteY="8dp">

    <TextView
        android:id="@+id/text1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:gravity="center_horizontal"
        android:text="Enter Data" />

    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/text1"
        android:text="Submit" />

    <ScrollView
        android:id="@+id/scroll"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/text2"
        android:layout_below="@+id/button">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/holo_green_light"
            android:orientation="vertical">

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_green_light"
                android:text="new Button" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_blue_light"
                android:text="new Button" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_green_light"
                android:text="new Button" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_blue_light"
                android:text="new Button" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_green_light"
                android:text="new Button" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_blue_light"
                android:text="new Button" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_green_light"
                android:text="new Button" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_blue_light"
                android:text="new Button" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_green_light"
                android:text="new Button" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_blue_light"
                android:text="new Button" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_green_light"
                android:text="new Button" />
        </LinearLayout>
    </ScrollView>

    <TextView
        android:id="@+id/text2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/button2"
        android:gravity="center_horizontal"
        android:text="Enter Data Again" />

    <Button
        android:id="@+id/button2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:text="Submit Again" />

</RelativeLayout>

查看将如下:

enter image description here