Skip to main content
 首页 » 编程设计

android-5.0-lollipop之android Lollipop 工具栏: how to hide/show the toolbar while scrolling

2024年04月12日40飞鱼

我正在使用 appcompat/support-v7 中引入的新工具栏小部件。我想根据用户是否向上/向下滚动页面来隐藏/显示工具栏,就像在新的 Google Playstore 应用程序或 NewsStand 应用程序中一样。工具栏小部件中是否内置了一些东西,或者我应该将它与 FrameLayout 和 ObservableScrollView 结合使用?

请您参考如下方法:

据我所知,没有任何内置功能可以为您做到这一点。不过,您可以查看 Google IO 源代码,尤其是 BaseActivity 。搜索“自动隐藏”或查看 onMainContentScrolled

为了隐藏工具栏,你可以这样做:

toolbar.animate().translationY(-toolbar.getBottom()).setInterpolator(new AccelerateInterpolator()).start(); 

如果您想再次显示它,请调用:

toolbar.animate().translationY(0).setInterpolator(new DecelerateInterpolator()).start();