码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2017-07-23 16:29:54      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:nap   自动   事件   out   support   表示   距离   使用   near   

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

标签:nap   自动   事件   out   support   表示   距离   使用   near   

原文地址:http://www.cnblogs.com/zhoushenglei/p/7224730.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!