我想更流畅地显示或隐藏我的动作条。
目前,我正在做这一点,我的滚动状态的回收在我的活动变化视图。

 if (scrollState == ScrollState.UP) {
        if (mActionBar.isShowing()) {
            mActionBar.hide();
        }
    } else if (scrollState == ScrollState.DOWN) {
        if (!mActionBar.isShowing()) {
            mActionBar.show();
        }

    }

我想要一个更平滑的动画,就像在谷歌播放应用程序。
XML语言
 <style name="AppTheme" parent="Theme.AppCompat.Light">
        <item name="windowActionBar">false</item>

    </style>

初始化操作栏
 setSupportActionBar(mToolbar);
    mActionBar = getSupportActionBar();

最佳答案

使用支持库中的ToolbarObservableScrollview中的可滚动小部件:https://github.com/ksoichiro/Android-ObservableScrollView
下面是一个覆盖ObservableScrollViewCallbacks的示例实现。请注意,它还在滚动条的末尾设置工具栏的动画,以避免工具栏只显示一半,这可能看起来有点奇怪。以下是演示视频:https://drive.google.com/file/d/0B7TH7VeIpgSQa293YmhSY1M2Um8/view?usp=sharing

@Override
public void onScrollChanged(int scrollY, boolean firstScroll, boolean dragging) {

    toolbar.animate().cancel();

    int scrollDelta = scrollY - oldScrollY;
    oldScrollY = scrollY;

    float currentYTranslation = -toolbar.getTranslationY();
    float targetYTranslation = Math.min(Math.max(currentYTranslation + scrollDelta, 0), toolbarHeight);
    toolbar.setTranslationY(-targetYTranslation);
}

@Override
public void onUpOrCancelMotionEvent(ScrollState scrollState) {
    float currentYTranslation = -toolbar.getTranslationY();
    int currentScroll = listView.getCurrentScrollY();

    if (currentScroll < toolbarHeight) {
        toolbar.animate().translationY(0);
    } else if (currentYTranslation > toolbarHeight /2) {
        toolbar.animate().translationY(-toolbarHeight);
    } else {
        toolbar.animate().translationY(0);
    }
}

07-24 09:27