Material Design系列教程(4) - CoordinatorLayout

简介

CoordinatorLayout,中文应译:协调者布局。见名知意,CoordinatorLayout 主要用途有两个:

  • 作为顶层布局使用。
  • 作为一个容器,与一个或者多个子View进行特定交互。

来看下 CoordinatorLayout 的文档:

CoordinatorLayout

从文档中可以看出,CoordinatorLayout 是在 design 包中,它是一个ViewGroup,是一个更强力的FrameLayout

通过为 CoordinatorLayout 的子View指定 Behaviors,你可以在单一父View下提供许多不同的交互,同时也可以让子View间各自进行交互。

所以,其实 CoordinatorLayout 的核心操作是 Behavior

那么我们来看下 Behavior 的文档:

Behavior

一个 Behavior 可以为用户实现对 CoordinatorLayout 的一个子View的一个或多个交互。这些交互包括 drags, swipes, flings 以及其他手势操作。

简单理解就是,Behavior 就是定制子View间的交互行为逻辑。

Behavior 内部持有一个泛型ViewBehavior<V extends android.view.View),该ViewCoordinatorLayout 的子View,并且是要响应其他子View的事件;也就是说,该View依赖于其他View

让我们从Behavior 比较重要的两个方法来理解上面所讲的内容:


        /**
         * Determine whether the supplied child view has another specific sibling view as a
         * layout dependency.
         *
         * @param parent the parent view of the given child
         * @param child the child view to test
         * @param dependency the proposed dependency of child
         * @return true if child's layout depends on the proposed dependency's layout,
         *         false otherwise
         *
         * @see #onDependentViewChanged(CoordinatorLayout, View, View)
         */
        public boolean layoutDependsOn(CoordinatorLayout parent, V child, View dependency) {
            return false;
        }

        /**
         * Respond to a change in a child's dependent view
         *
         * @param parent the parent view of the given child
         * @param child the child view to manipulate
         * @param dependency the dependent view that changed
         * @return true if the Behavior changed the child view's size or position, false otherwise
         */
        public boolean onDependentViewChanged(CoordinatorLayout parent, V child, View dependency) {
            return false;
        }

这里首先要理解下上面两个方法中的 childdependency 两个Viewchild 就是 CoordinatorLayout 里面的一个子View,而 dependencychild 依赖的View。当 dependency 行为改变时, child 就会被它设置的Behavior 通知到,从而做出相应的改变(这就完成了 childdependency 之间的交互)。

说到这里,现在你大概就明白了,其实 CoordinatorLayout 的出现就是为了解耦子View与子View之间的交互。所以,如果你的应用需要多个View之间进行交互,不妨考虑下使用 CoordinatorLayout 包裹这些View,然后为各个子View引入相应的 Behavior 来实现交互。

示例

那么下面我们就来写一个 Demo 来看下 CoordinatorLayout 如何通过自定义 Behavior 来实现各子View间的交互把。

要求:

假设当前布局中有一个RecyclerView和一个FloatingActionButton,要求当RecyclerView滑动时,让FloatingActionButton隐藏;当RecyclerView停止滑动时,让FloatingActionButton显示。

分析:

由于要求的时RecyclerView滑动时,FloatingActionButton进行响应,也就是说FloatingActionButton的行为依赖于RecyclerView,因此,可以让 CoordinatorLayout 包裹这两个控件,然后给FloatingActionButton添加一个响应RecyclerView滑动事件的自定义 Behavior,让FloatingActionButton可以响应RecyclerView的滑动事件。

代码详情
  1. 首先先为FloatingActionButton自定义一个 Behavior
package com.yn.demos.masterial_design.CoordinatorLayout;

import android.content.Context;
import android.graphics.CornerPathEffect;
import android.support.annotation.NonNull;
import android.support.design.widget.CoordinatorLayout;
import android.support.design.widget.FloatingActionButton;
import android.support.v4.view.ViewCompat;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;

public class FabVisibilityBehavior extends CoordinatorLayout.Behavior<FloatingActionButton> {
    // important !!
    public FabVisibilityBehavior(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public boolean onStartNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, @NonNull FloatingActionButton child, @NonNull View directTargetChild, @NonNull View target, int axes, int type) {
        Log.d("Why8n", "onStartNestedScroll");
        if (axes == ViewCompat.SCROLL_AXIS_VERTICAL) { //scroll vertical
            child.hide();
            return true;
        }
        return super.onStartNestedScroll(coordinatorLayout, child, directTargetChild, target, axes, type);
    }

    @Override
    public void onStopNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, @NonNull FloatingActionButton child, @NonNull View target, int type) {
        super.onStopNestedScroll(coordinatorLayout, child, target, type);
        Log.d("Why8n", "onStopNestedScroll");
        if (!child.isShown())
            child.show();
    }
}
  1. 布局如下所示:
<?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.v7.widget.RecyclerView
        android:id="@+id/rc"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|right"
        android:layout_margin="20dp"
        android:src="@drawable/emoticon"
        app:borderWidth="0dp"
        app:elevation="50dp"
        app:fabSize="normal"
        app:layout_behavior="com.yn.demos.masterial_design.CoordinatorLayout.FabVisibilityBehavior"
        app:rippleColor="#e7d16b" />

</android.support.design.widget.CoordinatorLayout>
  1. 效果如下:
CoordinatorLayout Demo
代码解析

上面代码中,主要时覆写了 Behavior 的两个方法:

方法 解释
onStartNestedScroll CoordinatorLayout 的直接或者非直接子View开始准备嵌套滑动的时候会调用; 如果 Behavior 对滑动事件感兴趣,该方法必须返回 true,这样后续的滑动事件才能被接收
onNestedScroll 当目标对象正在滑动或者将要滑动时被调用
onStopNestedScroll 当嵌套滑动停止时被调用

所以上面代码中,我们在自定义的 FabVisibilityBehavior覆写了onStartNestedScrollonStopNestedScroll方法,并让onStartNestedScroll返回true,这样onStopNestedScroll才会被我们自定义的 FabVisibilityBehavior接收到,从而在这两个方法中对FloatingActionButton进行显示和隐藏。

最后在布局文件中通过app:layout_behavior="com.yn.demos.masterial_design.CoordinatorLayout.FabVisibilityBehavior"将我们自定义的 Behavior 添加到FloatingActionButton中,这样当 CoordinatorLayout 发生滑动事件时,FloatingActionButton借助于该自定义的FabVisibilityBehavior就可以进行响应了。

注:由于我们是在 xml 中静态的导入自定义 Behavior,为了让 layout inflation 顺利进行,我们必须实现一个构造函数:

    public FabVisibilityBehavior(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

否则,将会出现 “Could not inflate Behavior subclass” 的错误信息。

参考

CoordinatorLayout自定义Behavior

CoordinatorLayout的使用如此简单

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容

  • 最新项目中用到了些Material效果,在此对自己的学习做个小结。 首先养成良好的学习习惯-----看源码: Co...
    风少侠阅读 4,862评论 5 37
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,043评论 25 707
  • 深秋·还有那多柿子 朗诵:云中飘舞 火红的柿子叶 柿子树下那些老人 不见谁跟谁之间的切磋 几个世纪的争斗 待到叶红...
    屈冰阅读 608评论 37 62
  • 周末跟部门出游,然后晚上打了好多电话,作业雨成功错过。﹋o﹋ 说一下今晚的感想。人的幸运是自己给自己的,相同的,不...
    侧耳倾听0114阅读 132评论 0 0
  • 让我掉下眼泪的 不知你们的酒 让我依依不舍 不知部队的服从 部队还要呆多久 转眼班长要走 让我感到为难的 是分别的...
    嵟鉄難阅读 158评论 0 0