更高级的ToolBar使用----AppBarLayout

Posted 静静的码代码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更高级的ToolBar使用----AppBarLayout相关的知识,希望对你有一定的参考价值。

AppBarLayout实际是一个LinearLayout,不过 Design Support库对它做了很多滚动事件,

将Toolbar嵌套到AppBarLayout中,然后给页面显示主题内容的控件指定一个布局行为

  <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"

          scroll表示当内容上滚动Toobar会跟着向上滚动并隐藏,
          enterAlways表示当内容乡下滚动时,ToolBar会乡下滚动并显示。
          snap表示当内容还没有完全隐藏或显示的时候,会根据当前滚动的距离,自动选择隐藏还是显示 app:layout_scrollFlags
="scroll|enterAlways|snap" /><!--Toobar在APPBarlayout中添加这个属性ToolBar会跟着主题内容上滑隐藏,下划出现--> </android.support.design.widget.AppBarLayout>

指定布局行为

app:layout_behavior="@string/appbar_scrolling_view_behavior"

别忘了添加Design Support的依赖





以上是关于更高级的ToolBar使用----AppBarLayout的主要内容,如果未能解决你的问题,请参考以下文章

自定义ToolBar

"windows Live Toolbar"是啥意思?

在 SettingsActivity 中自定义 Toolbar 和其他属性

Toolbar使用

如何确定 CollapsingToolbar 已折叠?

原来Toolbar还能这么用?Toolbar使用最全解析。网友:终于不用老是自定义标题栏啦