AppBarLayout中的RecyclerView不可滚动

时间:2016-06-09 06:29:13

标签: android android-recyclerview android-coordinatorlayout android-scroll

我正在使用Material Search View。但是当我使用CoordinatorLayout作为Root元素并且在AppBarLayout中使用RecyclerView(SearchView - RecyclerView是自定义视图的子代com.miguelcatalan.materialsearchview.MaterialSearchView)时,它不起作用。

<android.support.design.widget.CoordinatorLayout android:id="@+id/container"
                                             xmlns:android="http://schemas.android.com/apk/res/android"
                                             xmlns:app="http://schemas.android.com/apk/res-auto"
                                             android:layout_width="match_parent"
                                             android:layout_height="match_parent">

<!-- Irrelevant stuff -->
<android.support.v4.view.ViewPager
    android:id="@+id/viewpager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/appbarlayout"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbarlayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/search_layover_bg"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">


    <FrameLayout
        android:id="@+id/toolbar_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@color/theme_primary"/>

           <com.miguelcatalan.materialsearchview.MaterialSearchView
                android:id="@+id/search_view"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

    </FrameLayout>

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/theme_primary"
        app:tabGravity="fill"
        app:tabMode="fixed"/>

</android.support.design.widget.AppBarLayout>

0 个答案:

没有答案