我有一个工具栏,可以滚动显示我应用中的内容。当我执行操作时,我希望工具栏始终显示。
所以我从:
开始 appBarLayoutParms.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL);
如果我滚动视图,工具栏隐藏,它工作正常。然后,我在隐藏工具栏时执行操作。我这样做:
appBarLayoutParms.setScrollFlags(0);
之后工具栏没有出现,它仍然是隐藏的。
我希望能够随时禁用滚动行为并显示工具栏,然后再打开它。
这是我的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
...>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_bar"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
...
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentTop="true"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
<NestedScrollView
android:id="@+id/nested"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0"
android:fillViewport="true"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</NestedScrollView>
</android.support.design.widget.CoordinatorLayout>