Android-->Behavior上手入门


开始布局时,方法回调顺序:

1:StickBehavior([context, attrs])-> 
2:onAttachedToLayoutParams([params])->
3:layoutDependsOn([parent,child,dependency])->//当dependency是你需要监听的View时,需要返回true, 否则dependency View位置改变, 或者大小改变不会有onDependentViewChanged回调.
4:onMeasureChild([parent,child,parentWidthMeasureSpec,widthUsed,parentHeightMeasureSpec,heightUsed])->
5:layoutDependsOn([parent,child,dependency])->
6:onMeasureChild([parent,child,parentWidthMeasureSpec,widthUsed,parentHeightMeasureSpec,heightUsed])->
7:layoutDependsOn([parent,child,dependency])->
8:onMeasureChild([parent,child,parentWidthMeasureSpec,widthUsed,parentHeightMeasureSpec,heightUsed])->
9:layoutDependsOn([parent,child,dependency])->
10:onMeasureChild([parent,child,parentWidthMeasureSpec,widthUsed,parentHeightMeasureSpec,heightUsed])->
11:onLayoutChild([parent,child,layoutDirection])->
12:onDependentViewChanged([parent, child, dependency])-> //当layoutDependsOn返回true时, 才会有这个回调

开始滚动子View时, 方法回调顺序

1:onStartNestedScroll([coordinatorLayout, child, directTargetChild, target, nestedScrollAxes])-> //此方法必须返回true, 否则之后的滚动事件将没有回调
2:onNestedScrollAccepted([coordinatorLayout, child, directTargetChild, target, nestedScrollAxes])->
3:onNestedPreScroll([coordinatorLayout, child, target, dx, dy, consumed])-> 
4:onNestedScroll([coordinatorLayout, child, target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed])-> 
//当快速滑动的时候, 才会触发fling回调
//4.1:onNestedPreFling([coordinatorLayout, child, target, velocityX, velocityY])-> 
//4.2:onNestedFling([coordinatorLayout, child, target, velocityX, velocityY, consumed])-> 
5:onStopNestedScroll([coordinatorLayout, child, target])->

源码地址:
https://github.com/angcyo/uiview/blob/master/RLibrary/uiview/src/main/java/com/angcyo/uiview/design/StickBehavior.java

public class StickBehavior<V extends View> extends CoordinatorLayout.Behavior<V> {
    View mTargetView;

    /**
     * 悬停区域的高度 px
     */
    int stickHeight = 0;

    /**
     * 为了保存已经偏移的距离
     */
    int lastTop = 0;

    public StickBehavior() {
    }

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

    /**
     * 当CoordinatorLayout在layout的时候, 会回调此方法, 告诉你,
     * 是否需要得到dependency View的位置大小改变的监听,如果你需要, 那么必须返回true
     */
    @Override
    public boolean layoutDependsOn(CoordinatorLayout parent, V child, View dependency) {
        if (mTargetView == null) {
            lastTop = 0;
        }
        if (dependency instanceof StickLayout) {
            //StickLayout只是用来判断是否是目标的标识, 没有任何不同支持,
            //你也可以通过getId判断id是否相等, 来处理
            mTargetView = dependency;
            stickHeight = (int) (40 * child.getContext().getResources().getDisplayMetrics().density);
            return true;
        }
        return super.layoutDependsOn(parent, child, dependency);
    }

    /**
     * 只有当layoutDependsOn返回true时, 才会回调.
     * 当dependency对应的View, 发生了改变, 就会回调此方法.
     * 你可以在此更新child的位置
     */
    @Override
    public boolean onDependentViewChanged(CoordinatorLayout parent, V child, View dependency) {
        lastTop = dependency.getTop();
        child.setTop(dependency.getBottom());
        return true;
    }


    /**
     * 测量child的大小, 和自定义view的套路一样
     */
    @Override
    public boolean onMeasureChild(CoordinatorLayout parent, V child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) {
        child.measure(View.MeasureSpec.makeMeasureSpec(parent.getMeasuredWidth(), View.MeasureSpec.EXACTLY),
                View.MeasureSpec.makeMeasureSpec(parent.getMeasuredHeight() - stickHeight, View.MeasureSpec.EXACTLY));
        return true;
    }

    /**
     * 布局child的位置, 和自定义view的套路一样
     */
    @Override
    public boolean onLayoutChild(CoordinatorLayout parent, V child, int layoutDirection) {
        if (mTargetView != null) {
            ViewCompat.offsetTopAndBottom(mTargetView, lastTop);
            int top = mTargetView.getBottom();// - Math.abs(lastTop);
            child.layout(0, top, child.getMeasuredWidth(), top + child.getMeasuredHeight());
            return true;
        }
        return super.onLayoutChild(parent, child, layoutDirection);
    }

    /**
     * 必须返回true, 否则你收不到子View滚动的事件
     */
    @Override
    public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) {
        return true;
    }

    /**
     * 当子View开始滚动之前, 你可以通过此方法消耗掉滚动事件, 并偏移child的位置
     */
    @Override
    public void onNestedPreScroll(CoordinatorLayout coordinatorLayout, V child, View target, int dx, int dy, int[] consumed) {
        if (dy == 0 || (dy < 0 && ViewCompat.canScrollVertically(target, -1))) {
            return;
        }

        int offsetMax = mTargetView.getMeasuredHeight() - stickHeight;

        int top = mTargetView.getTop();
        int offset = 0;
        if (dy > 0) {
            //上滑
            offset = Math.min(dy, offsetMax + top);
        } else if (dy < 0) {
            //下滑
            offset = Math.max(dy, top);
        }
        ViewCompat.offsetTopAndBottom(mTargetView, -offset);
        consumed[1] = offset;
    }

    /**
     * 用来处理快速滑动
     */
    @Override
    public boolean onNestedPreFling(CoordinatorLayout coordinatorLayout, V child, View target, float velocityX, float velocityY) {
        L.e("call: onNestedPreFling([coordinatorLayout, child, target, velocityX, velocityY])-> ");

        if (velocityY < 0 && ViewCompat.canScrollVertically(target, -1)) {
            return super.onNestedPreFling(coordinatorLayout, child, target, velocityX, velocityY);
        }

        int offsetMax = mTargetView.getMeasuredHeight() - stickHeight;

        if (velocityY > offsetMax) {
            mTargetView.setTop(-offsetMax);
            //mTargetView.setBottom(mTargetView.getMeasuredHeight() - offsetMax);
            animToBottom(mTargetView.getMeasuredHeight() - offsetMax);
        } else if (velocityY < -offsetMax) {
            mTargetView.setTop(0);
            //mTargetView.setBottom(mTargetView.getMeasuredHeight());
            animToBottom(mTargetView.getMeasuredHeight());
        }

        return super.onNestedPreFling(coordinatorLayout, child, target, velocityX, velocityY);
    }

    void animToBottom(int bottom) {
        ValueAnimator animator = ObjectAnimator.ofInt(mTargetView.getBottom(), bottom);
        animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                mTargetView.setBottom((Integer) animation.getAnimatedValue());
            }
        });
        animator.setInterpolator(new LinearInterpolator());
        animator.setDuration(100);
        animator.start();
    }
}


至此: 文章就结束了,如有疑问: QQ群:274306954 欢迎您的加入.

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

推荐阅读更多精彩内容

  • 太长了,还是转载吧...今天在看博客的时候,无意中发现了@Trinea在GitHub上的一个项目Android开源...
    庞哈哈哈12138阅读 20,129评论 3 283
  • 明月几时有?把酒问青天。不知天上宫阙,今夕是何年。我欲乘风归去,又恐琼楼玉宇,高处不胜寒。起舞弄清影,何似在人间。...
    诗薇的诗阅读 372评论 1 1
  • 从前,你很酷,脚下也生风,忙着用力追赶青春。 直到遇到他,几秒心动,难忘多年,那些心事,想多了头疼,想开了心疼,你...
    楚艺白阅读 455评论 0 1
  • 酥蕊挂枝头, 弧光入水浮。 渺水间、 一叶孤舟。 省计那年曾共渡, 轻捻算、 记何秋。 夷江绕城流, 伊人曾再游。...
    刘小地阅读 226评论 5 25