允许用户在LinearLayout中“滚动”ViewPager。

时间:2015-03-09 05:40:10

标签: android android-layout

所以我有一个线性布局,里面有两个元素,一个是ViewPager和一个RecyclerView。目前,当用户向下滚动时,ViewPager会停留在页面顶部。优选地,将发生的是用户将滚动经过ViewPager以使RecyclerView占用该页面。我怎样才能做到这一点?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent"
    style="@style/AppTheme"
    android:orientation="vertical"
    android:layout_height="match_parent"
    tools:context=".ListEventsActivity">

    <android.support.v4.view.ViewPager
        android:id="@+id/fragment_pager"
        android:layout_height="300dp"
        android:layout_weight="1"
        android:layout_width="match_parent"/>

    <android.support.v7.widget.RecyclerView
        android:layout_weight="1"
        android:id="@+id/user_recycler"
        android:scrollbars="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

使用此功能,您需要在应用

时将高度设置为0dp
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent"
    style="@style/AppTheme"
    android:orientation="vertical"
    android:layout_height="match_parent"
    tools:context=".ListEventsActivity">

    <android.support.v4.view.ViewPager
    android:layout_weight="0.7"
        android:id="@+id/fragment_pager"
        android:layout_height="0dp"
        android:layout_width="match_parent"/>

    <android.support.v7.widget.RecyclerView
        android:layout_weight="0.7"
        android:id="@+id/user_recycler"
        android:scrollbars="vertical"
        android:layout_width="match_parent"
        android:layout_height="0dp" />
</LinearLayout>