如何用动画显示隐藏的工具栏?

How to show hidden toolbar with animation?

我想通过单击按钮显示带有动画的隐藏工具栏。我找到了一个隐藏然后显示工具栏的好代码:

隐藏:

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

显示:

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

但我需要首先显示工具栏,所以在我开始动画时它应该被隐藏。

我将不胜感激。

在开始动画之前在简历上显示操作栏:

如果您使用的是 appcompat 库,

getSupportActionBar().hide();

其他

getActionBar().hide();