FloatingActionButton的Behavior里面onNestedScroll()只調(diào)了一次?

今天锨络,在重寫 FloatingActionButton.Behavior 的時候隅俘,遇到了問題攻谁,記錄一下

第一個問題,在完成了 behavior 代碼之后

public class ScrollFABBehavior extends FloatingActionButton.Behavior {

    @Override
    public boolean onStartNestedScroll(@NonNull CoordinatorLayout coordinatorLayout,
                                       @NonNull FloatingActionButton child,
                                       @NonNull View directTargetChild,
                                       @NonNull View target, int axes, int type) {
        // Ensure we react to vertical scrolling
        return axes == ViewCompat.SCROLL_AXIS_VERTICAL
                || super.onStartNestedScroll(coordinatorLayout, child, directTargetChild, target, axes);

    }

    @Override
    public void onNestedScroll(@NonNull CoordinatorLayout coordinatorLayout,
                               @NonNull FloatingActionButton child,
                               @NonNull View target,
                               int dxConsumed,
                               int dyConsumed,
                               int dxUnconsumed,
                               int dyUnconsumed,
                               int type) {
        super.onNestedScroll(coordinatorLayout, child, target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, type);
        if (dyConsumed > 0 && child.getVisibility() == View.VISIBLE) {
            child.hide();
        } else if (dyConsumed <= 0 && child.getVisibility() != View.VISIBLE) {
            child.show();
        }
    }

}

用在 FAB 上的時候 出現(xiàn)了 異常

Could not inflate Behavior subclass com.example.....ScrollFABBehavior

仔細(xì)一看断盛,shit,忘記了 從 xml 加載對應(yīng)的 構(gòu)造函數(shù)

加上就解決了

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

接下來是第二個問題

FAB 的 hide() 沒有問題愉舔,可以hide 完之后 不show 了钢猛。

跟蹤一下發(fā)現(xiàn),onNestedScroll() 只調(diào)用了一次

/**
         * Called when a nested scroll in progress has updated and the target has scrolled or
         * attempted to scroll.
         *
         * <p>Any Behavior associated with the direct child of the CoordinatorLayout may elect
         * to accept the nested scroll as part of {@link #onStartNestedScroll}. Each Behavior
         * that returned true will receive subsequent nested scroll events for that nested scroll.
         * </p>
         *
         * <p><code>onNestedScroll</code> is called each time the nested scroll is updated by the
         * nested scrolling child, with both consumed and unconsumed components of the scroll
         * supplied in pixels. <em>Each Behavior responding to the nested scroll will receive the
         * same values.</em>
         * </p>
         *
         * @param coordinatorLayout the CoordinatorLayout parent of the view this Behavior is
         *                          associated with
         * @param child the child view of the CoordinatorLayout this Behavior is associated with
         * @param target the descendant view of the CoordinatorLayout performing the nested scroll
         * @param dxConsumed horizontal pixels consumed by the target's own scrolling operation
         * @param dyConsumed vertical pixels consumed by the target's own scrolling operation
         * @param dxUnconsumed horizontal pixels not consumed by the target's own scrolling
         *                     operation, but requested by the user
         * @param dyUnconsumed vertical pixels not consumed by the target's own scrolling operation,
         *                     but requested by the user
         * @param type the type of input which cause this scroll event
         *
         * @see NestedScrollingParent2#onNestedScroll(View, int, int, int, int, int)
         */

這好像是在逗我屑宠?我也看不懂厢洞,大概意思就是 這個函數(shù)在 scroll 的時候就會更新

可是并沒有

解決辦法:

@Override
    public void onNestedScroll(@NonNull CoordinatorLayout coordinatorLayout,
                               @NonNull FloatingActionButton child,
                               @NonNull View target,
                               int dxConsumed,
                               int dyConsumed,
                               int dxUnconsumed,
                               int dyUnconsumed,
                               int type) {
        super.onNestedScroll(coordinatorLayout, child, target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, type);
        if (dyConsumed > 0 && child.getVisibility() == View.VISIBLE) {
            child.hide(new FloatingActionButton.OnVisibilityChangedListener() {
                @Override
                public void onShown(FloatingActionButton fab) {
                    super.onShown(fab);
                }

                @Override
                public void onHidden(FloatingActionButton fab) {
                    super.onHidden(fab);
                    fab.setVisibility(View.INVISIBLE);
                }
            });
        } else if (dyConsumed <= 0 && child.getVisibility() != View.VISIBLE) {
            child.show();
        }
    }

跟上面的區(qū)別就是 hide 的時候 別把 FAB visibility 變成GONE,而是變成 INVISIBLE

GONE 與 INVISIBLE 的區(qū)別就不說了典奉。

為什么會發(fā)生這種情況呢躺翻?

道聽途說:FAB都GONE 掉了,就不跟蹤Scroll狀態(tài)了卫玖,所以也就沒有 onNestedScroll() 什么事公你,但是INVISIBLE 就不同了,會很勤奮地做這件事情假瞬,雖然看不見陕靠。
已發(fā)布至 我說的這句話是謊話

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市脱茉,隨后出現(xiàn)的幾起案子剪芥,更是在濱河造成了極大的恐慌,老刑警劉巖琴许,帶你破解...
    沈念sama閱讀 211,948評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件税肪,死亡現(xiàn)場離奇詭異,居然都是意外死亡榜田,警方通過查閱死者的電腦和手機益兄,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,371評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來箭券,“玉大人净捅,你說我怎么就攤上這事”缈椋” “怎么了蛔六?”我有些...
    開封第一講書人閱讀 157,490評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長庆捺。 經(jīng)常有香客問我古今,道長,這世上最難降的妖魔是什么滔以? 我笑而不...
    開封第一講書人閱讀 56,521評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮氓拼,結(jié)果婚禮上你画,老公的妹妹穿的比我還像新娘抵碟。我一直安慰自己,他們只是感情好坏匪,可當(dāng)我...
    茶點故事閱讀 65,627評論 6 386
  • 文/花漫 我一把揭開白布拟逮。 她就那樣靜靜地躺著,像睡著了一般适滓。 火紅的嫁衣襯著肌膚如雪敦迄。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,842評論 1 290
  • 那天凭迹,我揣著相機與錄音罚屋,去河邊找鬼。 笑死嗅绸,一個胖子當(dāng)著我的面吹牛脾猛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播鱼鸠,決...
    沈念sama閱讀 38,997評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼猛拴,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了蚀狰?” 一聲冷哼從身側(cè)響起愉昆,我...
    開封第一講書人閱讀 37,741評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎麻蹋,沒想到半個月后跛溉,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,203評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡哥蔚,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,534評論 2 327
  • 正文 我和宋清朗相戀三年倒谷,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片糙箍。...
    茶點故事閱讀 38,673評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡渤愁,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出深夯,到底是詐尸還是另有隱情抖格,我是刑警寧澤,帶...
    沈念sama閱讀 34,339評論 4 330
  • 正文 年R本政府宣布咕晋,位于F島的核電站雹拄,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏掌呜。R本人自食惡果不足惜滓玖,卻給世界環(huán)境...
    茶點故事閱讀 39,955評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望质蕉。 院中可真熱鬧势篡,春花似錦翩肌、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,770評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至碍侦,卻和暖如春粱坤,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背瓷产。 一陣腳步聲響...
    開封第一講書人閱讀 32,000評論 1 266
  • 我被黑心中介騙來泰國打工站玄, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人拦英。 一個月前我還...
    沈念sama閱讀 46,394評論 2 360
  • 正文 我出身青樓蜒什,卻偏偏與公主長得像,于是被迫代替她去往敵國和親疤估。 傳聞我的和親對象是個殘疾皇子灾常,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,562評論 2 349

推薦閱讀更多精彩內(nèi)容