滚动视图滚动时如何隐藏和显示材质工具栏?

时间:2015-09-20 04:05:21

标签: android material-design toolbar

在我的Android应用中,我在ScrollView内构建一个简单的RelativeLayout!它还有一个材料Toolbar。当用户向上滚动并在用户向下滚动时显示工具栏时,如何使材质工具栏隐藏?这是我的应用程序的xml布局结构。

<RelativeLayout>
    <AppBarLayout>
        <Toolbar/>
    </AppBarLayout>

    <ScrollView> 
        <!-- views -->
    </ScrollView>
</RelativeLayout>

1 个答案:

答案 0 :(得分:2)

使用带有CollapsingToolbarLayout的NestedScrollView

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

Try this working example