在滚动设计支持库上隐藏工具栏

时间:2015-06-08 17:05:01

标签: java android android-layout android-fragments

如果使用新的设计支持库,如何在recyclelerview中隐藏工具栏,该工具位于viewpager中的片段中?

<android.support.v4.widget.DrawerLayout 
    ... >
    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v4.view.ViewPager
            android:id="@+id/viewPager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                ...
                android:minHeight="?actionBarSize"
                app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
                app:layout_scrollFlags="scroll|enterAlways" />

            <android.support.design.widget.TabLayout
                android:id="@+id/tab_layout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                ... />

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

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

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        ... />
</android.support.v4.widget.DrawerLayout>

2 个答案:

答案 0 :(得分:3)

您的布局似乎没问题。但是,您还应该在RecyclerView中添加行为(我想它是在稍后添加到ViewPager中的片段中):

app:layout_behavior="@string/appbar_scrolling_view_behavior"

,最重要的是,正如this other SO answer所述,不要忘记将构建工具更新为22,并且您的gradle引用至少是组件和设计支持库的第22.20版:

compile 'com.android.support:design:22.2.0'
compile 'com.android.support:recyclerview-v7:22.2.0'

查看this以获取完整的教程。

答案 1 :(得分:-1)

库中已经内置了一个名为CollapsingToolbarLayout的控件。它已被设计为在滚动时折叠,并将包括Paralax,文本和淡入淡出效果(因此您应该使用它)。