Android 5.0+ 解析(八)AppBarLayout控件

AppBarLayout是Android 5.0+为实现Material Design设计的App Bar视图容器,用于手势滑动操作。它是一个垂直方向的LinerLayout,常与CoordinatorLayout配合,使内容能响应滑动并实现悬停效果。当与Toolbar结合时,AppBarLayout应作为Toolbar的父布局。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

AppBarLayout简单介绍

AppBarLayout 是继承LinerLayout实现的一个ViewGroup容器组件,它是为了Material Design设计的App Bar,支持手势滑动操作(需要跟CoordinatorLayout配合使用,下面会介绍如何配合CoordinatorLayout组件)。默认的AppBarLayout是垂直方向的,它的作用是把AppBarLayout包裹的内容都作为AppBar。


AppBarLayout + CoordinatorLayou实现滑动和悬停的tab布局

<span style="font-size:18px;"><?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    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:orientation="vertical">
    <android.support.design.widget.AppBarLayout 
		android:layout_width="match_parent" 
		android:layout_height="wrap_content" 
		android:orientation="vertical">
        <android.support.v7.widget.Toolbar 
			android:id="@+id/third_activity_toolbar" 
			android:layout_width="match_parent" 
			android:layout_height="?attr/actionBarSize"/>
        <android.support.design.widget.TabLayout 
			android:id="@+id/tab_layout" 
			android:layout_width="match_parent" 
			android:layout_height="wrap_content" 
			app:layout_scrollFlags="scroll|enterAlways" 
			app:tabIndicatorColor="@color/medium_blue" 
			app:tabSelectedTextColor="@color/medium_blue" 
			app:tabTextAppearance="@style/TabText" 
			app:tabTextColor="@color/gray_text"/>
    </android.support.design.widget.AppBarLayout>
    <android.support.v4.view.ViewPager 
		android:id="@+id/viewpager" 
		android:layout_width="match_parent" 
		android:layout_height="wrap_content" 
		app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout></span>
1、在AppBarLayout里面的View,通过app:layout_scrollFlags属性来控制,滚动时候的表现.其中有4种Flag的类型:
scroll: this flag should be set for all views that want to scroll off the screen - for views that do not use this flag, they’ll remain pinned to the top of the screen
enterAlways: this flag ensures that any downward scroll will cause this view to become visible, enabling the ‘quick return’ pattern
enterAlwaysCollapsed: When your view has declared a minHeight and you use this flag, your View will only enter at its minimum height (i.e., ‘collapsed’), only re-expanding to its full height when the scrolling view has reached it’s top.
exitUntilCollapsed: this flag causes the view to scroll off until it is ‘collapsed’ (its minHeight) before exiting
(上面的例子种用的是 scroll 和 enterAlways.)
Scroll 表示向下滚动时,这个View会被滚出屏幕范围直到隐藏.
enterAlways 表示向上滚动时,这个View会随着滚动手势出现,直到恢复原来的位置.
2、 在可以滚动的View上设置属性 app:layout_behavior.
该属性的值实际上是一个完整的class名字,而上面例子中的 @string/appbar_scrolling_view_behavior 是Android Support Library 定义后的值,可以被直接使用.
这个Behavior的class是真正控制滚动时候View的滚动行为.我们也可以继承Behavior这个class去实现特有的滚动行为.


注意: 如果AppBarLayout与Toolbar一起使用,其必须作为Toolbar的父布局容器


欢迎留言和评论!

博客地址:http://blog.youkuaiyun.com/caihongdao123 
下一篇  Android 5.0+ 解析(九)TabLayout控件
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值