一硬霍、認識CoordinatorLayout
CoordinatorLayout
作為support:design庫里的核心控件,在它出現(xiàn)之前笼裳,要實現(xiàn)View之間嵌套滑動等交互操作可不是件容易的事唯卖,復(fù)雜、難度大躬柬,基本繞不開View
的事件機制拜轨,CoordinatorLayout
很大程度上解決了這個痛點,方便我們實現(xiàn)各種炫酷的交互效果允青。
如果你還沒用過CoordinatorLayout
橄碾,可先了解它的基本用法。
CoordinatorLayout
為何如此強大呢颠锉?因為它的內(nèi)部類Behavior
法牲,這也是CoordinatorLayout
的精髓所在。
二琼掠、不可不知的Behavior
使用CoordinatorLayout
時拒垃,會在xml文件中用它作為根布局,并給相應(yīng)的子View添加一個類似app:layout_behavior="@string/appbar_scrolling_view_behavior"
的屬性瓷蛙,當然屬性值也可以是其它的悼瓮。進一步可以發(fā)現(xiàn)@string/appbar_scrolling_view_behavior
的值是android.support.design.widget.AppBarLayout$ScrollingViewBehavior
戈毒,不就是support包下一個類的路徑嘛!玄機就在這里谤牡,通過CoordinatorLayout
之所以可以實現(xiàn)炫酷的交互效果副硅,Behavior
功不可沒。既然如此翅萤,我們也可以自定義Behavior
恐疲,來定制我們想要的效果。
要自定義Behavior
套么,首先認識下它:
public static abstract class Behavior<V extends View> {
public Behavior() {
}
public Behavior(Context context, AttributeSet attrs) {
}
//省略了若干方法
}
其中有一個泛型培己,它的作用是指定要使用這個Behavior
的View
的類型,可以是Button
胚泌、TextView
等等省咨。如果希望所有的View
都可以使用則指定泛型為View
即可。
自定義Behavior
可以選擇重寫以下的幾個方法有:
-
onInterceptTouchEvent()
:是否攔截觸摸事件 -
onTouchEvent()
:處理觸摸事件 -
layoutDependsOn()
:確定使用Behavior
的View
要依賴的View
的類型 -
onDependentViewChanged()
:當被依賴的View
狀態(tài)改變時回調(diào) -
onDependentViewRemoved()
:當被依賴的View
移除時回調(diào) -
onMeasureChild()
:測量使用Behavior
的View
尺寸 -
onLayoutChild()
:確定使用Behavior
的View
位置 -
onStartNestedScroll()
:嵌套滑動開始(ACTION_DOWN
)玷室,確定Behavior
是否要監(jiān)聽此次事件 -
onStopNestedScroll()
:嵌套滑動結(jié)束(ACTION_UP
或ACTION_CANCEL
) -
onNestedScroll()
:嵌套滑動進行中零蓉,要監(jiān)聽的子View
的滑動事件已經(jīng)被消費 -
onNestedPreScroll()
:嵌套滑動進行中,要監(jiān)聽的子View
將要滑動穷缤,滑動事件即將被消費(但最終被誰消費敌蜂,可以通過代碼控制) -
onNestedFling()
:要監(jiān)聽的子View
在快速滑動中 -
onNestedPreFling()
:要監(jiān)聽的子View
即將快速滑動
三、實踐
通常自定義Behavior
分為兩種情況:
某個
View
依賴另一個View
津肛,監(jiān)聽其位置章喉、尺寸等狀態(tài)的變化。某個
View
監(jiān)聽CoordinatorLayout
內(nèi)實現(xiàn)了NestedScrollingChild
接口的子View
的滑動狀態(tài)變化(也是一種依賴關(guān)系)身坐。
先看第一種情況秸脱,我們要實現(xiàn)的效果如下:
向上滑動列表時,
title
(TextView
)自動下滑部蛇,當title
全部顯示時摊唇,列表頂部和title
底部恰好重合,繼續(xù)上滑列表時title
固定涯鲁;下滑列表時遏片,當列表頂部和title
底部重合時,title
開始自動上滑直到完全隱藏撮竿。
首先我們定義一個SampleTitleBehavior
:
public class SampleTitleBehavior extends CoordinatorLayout.Behavior<View> {
// 列表頂部和title底部重合時吮便,列表的滑動距離。
private float deltaY;
public SampleTitleBehavior() {
}
public SampleTitleBehavior(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency) {
return dependency instanceof RecyclerView;
}
@Override
public boolean onDependentViewChanged(CoordinatorLayout parent, View child, View dependency) {
if (deltaY == 0) {
deltaY = dependency.getY() - child.getHeight();
}
float dy = dependency.getY() - child.getHeight();
dy = dy < 0 ? 0 : dy;
float y = -(dy / deltaY) * child.getHeight();
child.setTranslationY(y);
return true;
}
}
注意不要忘了重寫兩個參數(shù)的構(gòu)造函數(shù)幢踏,否則無法在xml文件中使用該Behavior
髓需,我們重寫了兩個方法:
-
layoutDependsOn()
:使用該Behavior
的View
要監(jiān)聽哪個類型的View的狀態(tài)變化。其中參數(shù)parant
代表CoordinatorLayout
房蝉,child
代表使用該Behavior
的View
僚匆,dependency
代表要監(jiān)聽的View
微渠。這里要監(jiān)聽RecyclerView
。 -
onDependentViewChanged()
:當被監(jiān)聽的View
狀態(tài)變化時會調(diào)用該方法咧擂,參數(shù)和上一個方法一致逞盆。所以我們重寫該方法,當RecyclerView
的位置變化時松申,進而改變title
的位置云芦。
一般情況這兩個方法是一組,這樣一個簡單的Behavior
就完成了贸桶,使用也很簡單舅逸,仿照系統(tǒng)的用法,先在strings.xml
中記錄其全包名路徑(當然不是必須的皇筛,下一遍會講到):
<string name="behavior_sample_title">com.othershe.behaviortest.test1.SampleTitleBehavior</string>
然后是布局文件
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.othershe.behaviortest.test1.TestActivity1">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:contentScrim="#00ffffff"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@mipmap/bg"
android:fitsSystemWindows="true"
android:scaleType="fitXY"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.7" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/my_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#ff0000"
android:gravity="center"
android:text="Hello World"
android:textColor="#ffffff"
android:textSize="18sp"
app:layout_behavior="@string/behavior_sample_title" />
</android.support.design.widget.CoordinatorLayout>
我們給TextView設(shè)置了該Behavior
琉历。
除了實現(xiàn)title的位置變化,要實現(xiàn)透明度變化也是很簡單的水醋,對SampleTitleBehavior
做如下修改即可:
@Override
public boolean onDependentViewChanged(CoordinatorLayout parent, View child, View dependency) {
if (deltaY == 0) {
deltaY = dependency.getY() - child.getHeight();
}
float dy = dependency.getY() - child.getHeight();
dy = dy < 0 ? 0 : dy;
float alpha = 1 - (dy / deltaY);
child.setAlpha(alpha);
return true;
}
修改后的效果如下:
第二種情況旗笔,我們的目標效果如下:
簡單解釋一下,該布局由RecylerView
列表和一個TextView
組成拄踪,其中RecylerView
實現(xiàn)了NestedScrollingChild
接口换团,所以TextView
監(jiān)聽RecylerView
的滑動狀態(tài)。開始向上滑動列表時TextView
和列表整體上移宫蛆,直到TextView
全部隱藏停止,再次上滑則列表內(nèi)容上移的猛。之后連續(xù)下滑列表當其第一個item
全部顯示時列表滑動停止耀盗,再次下滑列表時TextView
跟隨列表整體下移,直到TextView
全部顯示卦尊。(有點繞叛拷,上手體會下......)
這里涉及兩個自定義Behavior
,第一個實現(xiàn)垂直方向滑動列表時岂却,TextView
上移或下移的功能忿薇,但此時TextView
會覆蓋在RecyclerView
上(其實CoordinatorLayout有種FrameLayout的即視感),所以第二個的作用就是解決這個問題躏哩,實現(xiàn)RecyclerView
固定在TextView
下邊并跟隨TextView
移動署浩,可以發(fā)現(xiàn)這兩個View
是相互依賴的。
先看第一個Behavior
扫尺,代碼如下:
public class SampleHeaderBehavior extends CoordinatorLayout.Behavior<TextView> {
// 界面整體向上滑動筋栋,達到列表可滑動的臨界點
private boolean upReach;
// 列表向上滑動后,再向下滑動正驻,達到界面整體可滑動的臨界點
private boolean downReach;
// 列表上一個全部可見的item位置
private int lastPosition = -1;
public SampleHeaderBehavior() {
}
public SampleHeaderBehavior(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
public boolean onInterceptTouchEvent(CoordinatorLayout parent, TextView child, MotionEvent ev) {
switch (ev.getAction()) {
case MotionEvent.ACTION_DOWN:
downReach = false;
upReach = false;
break;
}
return super.onInterceptTouchEvent(parent, child, ev);
}
@Override
public boolean onStartNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, @NonNull TextView child, @NonNull View directTargetChild, @NonNull View target, int axes, int type) {
return (axes & ViewCompat.SCROLL_AXIS_VERTICAL) != 0;
}
@Override
public void onNestedPreScroll(@NonNull CoordinatorLayout coordinatorLayout, @NonNull TextView child, @NonNull View target, int dx, int dy, @NonNull int[] consumed, int type) {
super.onNestedPreScroll(coordinatorLayout, child, target, dx, dy, consumed, type);
if (target instanceof RecyclerView) {
RecyclerView list = (RecyclerView) target;
// 列表第一個全部可見Item的位置
int pos = ((LinearLayoutManager) list.getLayoutManager()).findFirstCompletelyVisibleItemPosition();
if (pos == 0 && pos < lastPosition) {
downReach = true;
}
// 整體可以滑動弊攘,否則RecyclerView消費滑動事件
if (canScroll(child, dy) && pos == 0) {
float finalY = child.getTranslationY() - dy;
if (finalY < -child.getHeight()) {
finalY = -child.getHeight();
upReach = true;
} else if (finalY > 0) {
finalY = 0;
}
child.setTranslationY(finalY);
// 讓CoordinatorLayout消費滑動事件
consumed[1] = dy;
}
lastPosition = pos;
}
}
private boolean canScroll(View child, float scrollY) {
if (scrollY > 0 && child.getTranslationY() == -child.getHeight() && !upReach) {
return false;
}
if (downReach) {
return false;
}
return true;
}
}
這里主要關(guān)注這兩個重寫的方法(這里涉及NestedScrolling
機制抢腐,下一篇會講到):
-
onStartNestedScroll()
:表示是否監(jiān)聽此次RecylerView
的滑動事件,這里我們只監(jiān)聽其垂直方向的滑動事件 -
onNestedPreScroll()
:處理監(jiān)聽到的滑動事件襟交,實現(xiàn)整體滑動和列表單獨滑動(header
是否完全隱藏是滑動的臨界點)迈倍。
第二個Behavior
就簡單了,就是第一種情況捣域,當header
位置變化時啼染,改變列表y
坐標,代碼如下:
public class RecyclerViewBehavior extends CoordinatorLayout.Behavior<RecyclerView> {
public RecyclerViewBehavior() {
}
public RecyclerViewBehavior(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
public boolean layoutDependsOn(CoordinatorLayout parent, RecyclerView child, View dependency) {
return dependency instanceof TextView;
}
@Override
public boolean onDependentViewChanged(CoordinatorLayout parent, RecyclerView child, View dependency) {
//計算列表y坐標竟宋,最小為0
float y = dependency.getHeight() + dependency.getTranslationY();
if (y < 0) {
y = 0;
}
child.setY(y);
return true;
}
}
將Behavior
加到strings.xml
中:
<string name="behavior_sample_header">com.othershe.behaviortest.test2.SampleHeaderBehavior</string>
<string name="behavior_recyclerview">com.othershe.behaviortest.test2.RecyclerViewBehavior</string>
在布局文件中的使用:
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.othershe.behaviortest.test2.TestActivity2">
<TextView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="#ff0000"
android:gravity="center"
android:text="Hello World"
android:textColor="#ffffff"
android:textSize="18sp"
app:layout_behavior="@string/behavior_sample_header" />
<android.support.v7.widget.RecyclerView
android:id="@+id/my_list"
android:layout_width="match_parent"
app:layout_behavior="@string/behavior_recyclerview"
android:layout_height="wrap_content" />
</android.support.design.widget.CoordinatorLayout>
自定義Behavior
的基本用法就這些了提完,主要就是確定View
之間的依賴關(guān)系(也可以理解為監(jiān)聽關(guān)系),當被依賴View
的狀態(tài)變化時丘侠,相應(yīng)View
的狀態(tài)進而改變徒欣。
掌握了自定義Behavior
,可以嘗試實現(xiàn)更復(fù)雜的交互效果蜗字,如下demo(原理參考了自定義Behavior的藝術(shù)探索-仿UC瀏覽器主頁)打肝,并添加了header
滑動手勢、列表下滑展開header
的操作:
再進一步簡化修改挪捕,就實現(xiàn)了類似Android
版蝦米音樂播放頁的手勢效果:
簡單的分析一下最后一個效果粗梭,界面由
header
、title
级零、list
三部分組成断医,初始狀態(tài)如下:title
此時在屏幕頂部外,則其初始y
坐標為-titleHeight
奏纪;header
在屏幕頂部鉴嗤,相當于其默認y
坐標為0;list
在header
下邊序调,則其初始y
坐標是headerHeight
醉锅。初始狀態(tài)上滑header
或list
則list
上移、title
下移发绢,同時header
向上偏移硬耍,最大偏移值headerOffset
。當header
達到最大偏移值時title
全部顯示其底部和list
頂部重合边酒,list
和title
的位移結(jié)束经柴,此時title
下移距離為titleHeight
,其y
坐標為0墩朦,即y
坐標的變化范圍從-titleHeight
到0口锭;而list
的上移距離為headerHeight - titleHeight
,此時其y
值為titleHeight
,y
坐標的變化范圍從headerHeight
到headerHeight - titleHeight
(下滑過程也類似鹃操,就不分析了)韭寸。上滑結(jié)束狀態(tài)如下:可以發(fā)現(xiàn)我們是以
header
向上偏移是否結(jié)束為臨界點,來決定list
荆隘、title
是否繼續(xù)位移恩伺,所以可以用header
作為被依賴對象,在滑動過程中椰拒,計算header
的translationY
和最大偏移值headerOffset
的比例進而計算title
和list
的y
坐標來完成位移晶渠,剩下就是編寫Behavior
了。這里有一點需要注意燃观,list
的高度在界面初始化后已經(jīng)完成測量褒脯,上滑時根據(jù)header
的偏移改變list
的y
坐標使其移動,會出現(xiàn)list
顯示不全的問題缆毁!
還記得第一個demo嗎番川,也是header
+list
的形式,但沒有這個問題脊框,可以參考一下哦颁督,其布局文件中使用了AppBarLayout
和它下邊的Behavior
名為appbar_scrolling_view_behavior
的RecyclerView
,其實AppBarLayout
也使用了一個Behavior
浇雹,只不過是通過注解來設(shè)置的(后邊會講到)沉御,它繼承自ViewOffsetBehavior
,由于ViewOffsetBehavior
是包私有的昭灵,我們拷貝一份吠裆,讓我們header
的Behavior
也繼承ViewOffsetBehavior
,上邊appbar_scrolling_view_behavior
對應(yīng)的Behavior
繼承自HeaderScrollingViewBehavior
烂完,它同樣也是私有的试疙,拷貝一份,讓list
的Behavior
繼承自它窜护,這樣問題就解決了!這里只是簡單的原理分析非春,代碼就不貼了柱徙,有興趣的可以看源碼!
下一篇奇昙,CoordinatorLayout之源碼解析护侮,更深入的學(xué)習(xí)Behavior
,有助理解最后的demo储耐,再見羊初!