首页 > 代码库 > 更高级的ToolBar使用----AppBarLayout
更高级的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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。