在滚动视图下方添加小部件
adding widgets below a scrollview
我想在顶部添加几个 android 小部件,然后是一个滚动视图和该滚动视图下方的几个小部件。完全填充后,Scrollview 开始占用分配给小部件的 space(应该在 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.
像下面这样更改您的布局代码:
<?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>
视图如下:
我想在顶部添加几个 android 小部件,然后是一个滚动视图和该滚动视图下方的几个小部件。完全填充后,Scrollview 开始占用分配给小部件的 space(应该在 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.
像下面这样更改您的布局代码:
<?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>
视图如下: