答案 0 :(得分:1)
我找到了问题并修复了它。实际上,问题出在包含标记。
在上面的代码中,我使用了include标记, include标记无法执行工具栏的功能。装置
应用程式:layout_scrollFlags = “滚动| enterAlways”
在包含标记中不起作用。
如果我使用 scrollFlags 直接在XML文件中使用工具栏,那么一切正常。
或者在toolbar.xml中添加 layout_scrollFlags
<强> toolbar.xml 强>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:titleTextColor="#FFFFFF"
app:layout_scrollFlags="scroll|enterAlways"
/>
更改后,我无需手动隐藏和显示工具栏。
并且一切正常。
答案 1 :(得分:0)
toolbar.animate().translationY(-toolbar.getBottom()).setInterpolator(new AccelerateInterpolator()).start();
如果您想再次显示,请致电:
toolbar.animate().translationY(0).setInterpolator(new DecelerateInterpolator()).start();