在我的Android应用中,我在ScrollView
内构建一个简单的RelativeLayout
!它还有一个材料Toolbar
。当用户向上滚动并在用户向下滚动时显示工具栏时,如何使材质工具栏隐藏?这是我的应用程序的xml布局结构。
<RelativeLayout>
<AppBarLayout>
<Toolbar/>
</AppBarLayout>
<ScrollView>
<!-- views -->
</ScrollView>
</RelativeLayout>
答案 0 :(得分:2)
使用带有CollapsingToolbarLayout的NestedScrollView
<android.support.v4.widget.NestedScrollView ...>
<LinearLayout ...>
...
</LinearLayout>
</android.support.v4.widget.NestedScrollView>