垂直滚动两个框架布局或片段

时间:2019-03-10 19:28:12

标签: android android-layout

我已经尝试过了-

    <?xml version="1.0" encoding="utf-8"?>
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:isScrollContainer="true"
        android:layout_below="@+id/rootLayout"
        android:layout_centerHorizontal="true">

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

        <FrameLayout
            android:id="@+id/shop_detail_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true" />

        <FrameLayout
            android:id="@+id/item_detail_container"
            android:layout_width="match_parent"
            android:layout_alignParentBottom="true"
            android:layout_height="wrap_content" />

    </RelativeLayout>
</ScrollView>

我正在尝试在一个屏幕上获得两个垂直可滚动的片段。上面的代码仅显示片段一,并且也不滚动。任何帮助将不胜感激。

谢谢。

2 个答案:

答案 0 :(得分:1)

片段在您的情况下是重叠的。如果要使用相对布局,请按以下方式使用

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

        <FrameLayout
            android:id="@+id/shop_detail_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true" />

        <FrameLayout
            android:layout_below="@id/shop_detail_container"
            android:id="@+id/item_detail_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </RelativeLayout>

或使用以下线性布局,

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:orientation="vertical"
        android:id="@+id/rootLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <FrameLayout
            android:id="@+id/shop_detail_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

        <FrameLayout
            android:id="@+id/item_detail_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </LinearLayout>
</android.support.v4.widget.NestedScrollView>

答案 1 :(得分:0)

像这样尝试一下对我有用

<LinearLayout...orientation = "horizontal>

    <ScrollView>
        <FrameLayout/>
    </ScrollView>

    <ScrollView>
        <FrameLayout/>
    </ScrollView>

</LinearLayout>