AppBarLayout
详细可参考这里:玩转AppBarLayout,更酷炫的顶部栏
用AppBarLayout 可让你定制 当某个可滚动View的滚动手势 发生变化时,其内部的子View实现何种动作。 通常和CoordinateLayout合作使用。
举个例子:AppBarLayout、ViewPager作为CoordinateLayout的子view,ViewPager设置“app:layout_behavior="@string/appbar_scrolling_view_behavior"来关联AppBarLayout,来始终保持在AppBarLayout下方;AppBarLayout中子view设置 “app:layout_scrollFlags”来决定如何滚动。
<?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"
xmlns:tools="http://schemas.android.com/tools">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout_ranking_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp"
android:background="@color/comm_transparent">
<!--text设置了layout_scrollFlags="scroll",会跟着"可滚动View(viewPager内fragment中的recyclerView)一起滑出去"-->
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="@color/common_color_e62117"
android:gravity="center"
tools:text="轮播TextViewTextViewTextViewTextViewTextViewTextViewTextView"
app:layout_scrollFlags="scroll"/>
<!--没设置layout_scrollFlags,所以到顶部就停止了-->
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout_ranking_list_category"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/comm_yellow"/>
</android.support.design.widget.AppBarLayout>
<!--ViewPager设置了app:layout_behavior="@string/appbar_scrolling_view_behavior",和AppBarLayout关联,始终保持在AppBarLayout下方-->
<!--虽然ViewPager本身不是NestedScroll,但是内部fragment中的recyclerView是可滑动view-->
<android.support.v4.view.ViewPager
android:id="@+id/vp_ranking_list"
android:layout_width="match_parent"
android:layout_height="600dp"
android:background="@color/lite_blue"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
效果如图,手指滑红色text、黄色tab、viewPager中fragment里的列表 都是相同效果:红色text滑出去了,黄色tab只能滑到顶部。
CollapsingToolbarLayout
CollapsingToolbarLayout是用来对Toolbar进行再次包装的ViewGroup,主要是用于实现折叠(其实就是看起来像伸缩~)的AppBar效果。它需要放在AppBarLayout布局里面,并且作为AppBarLayout的直接子View。
效果图:
下面直接上代码:
<?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">
<!--用AppBarLayout 可让你定制当某个可滚动View的滚动手势发生变化时,其内部的子View实现何种动作-->
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!--AppBarLayout的直接子view,使用layout_scrollFlags设置滚动方式-->
<!--CollapsingToolbarLayout是用来对Toolbar进行再次包装的ViewGroup,主要是用于实现折叠(其实就是看起来像伸缩~)的App Bar效果。它需要放在AppBarLayout布局里面,并且作为AppBarLayout的直接子View。 -->
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:title="this is title!"
app:titleEnabled="true">
<!--视差滚动子View(Parallax scrolling children):子View可以选择在当前的布局当时是否以“视差”的方式来跟随滚动。(PS:其实就是让这个View的滚动的速度比其他正常滚动的View速度稍微慢一点)。将布局参数app:layout_collapseMode设为parallax-->
<ImageView
android:layout_width="match_parent"
android:layout_height="300dp"
android:scaleType="centerCrop"
android:src="@mipmap/blue"
app:layout_collapseMode="parallax" />
<!--引入Toolbar-->
<!--将子View位置固定(Pinned position children):子View可以选择是否在全局空间上固定位置,这对于Toolbar来说非常有用,因为当布局在移动时,可以将Toolbar固定位置而不受移动的影响。 将app:layout_collapseMode设为pin-->
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
app:logo="@mipmap/ic_launcher"
app:navigationIcon="@mipmap/icon_item_detail_back"
app:layout_collapseMode="pin"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<!--NestedScrollView就是可滚动的view-->
<!--AppBarLayout与NestedScrollView关联:layout_behavior="@string/appbar_scrolling_view_behavior"-->
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorAccent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/btn_snack_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="show snack bar" />
<Button
android:id="@+id/btn_test_behavior"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="btn_test_behavior" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<!--FloatingActionButton-->
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="20dp"
android:background="@color/colorAccent"
android:backgroundTint="@color/colorPrimary"
android:clickable="true"
android:elevation="15dp"
android:src="@mipmap/dog"
app:pressedTranslationZ="10dp" /><!--pressedTranslationZ点击时阴影的大小-->
</android.support.design.widget.CoordinatorLayout>
代码里面有注释说明。