如何将Android活动拆分为两部分--1部分必须是可滚动的

时间:2018-05-22 19:09:36

标签: android android-layout

我想要活动,其中第一部分是可滚动的,第二部分仍然是。

enter image description here

3 个答案:

答案 0 :(得分:0)

您可以使用垂直线性布局作为具有两个子项的父级。

儿童1 - 体重1的滚动视图

Child 2 - 高度为wrap_content的视图

答案 1 :(得分:0)

你可以在活动中使用片段,如果你正在使用表考虑使用multipane片段,你可以在这里阅读它

http://android.tutorialhorizon.com/static-fragments-declare-the-fragment-as-a-element-inside-the-activitys-layout-file/

enter image description here

答案 2 :(得分:0)

使用此代码中的内容

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0"
        android:layout_weight="3"
        android:background="#abc">
        <!--some content for scrolling here-->
    </ScrollView>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0"
        android:layout_weight="1"
        android:background="#cba">
        <!--put other component here-->
    </LinearLayout>
</LinearLayout>

这里的ScrollView对于LinearLayout的布局权重为3比1,因此它将占据75%的高度,25%将被赋予LinearLayout