美文网首页Android
SwipeRefreshLayout中有AppBarLayout

SwipeRefreshLayout中有AppBarLayout

作者: 暖宝宝_龍 | 来源:发表于2018-04-18 17:16 被阅读0次

appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {

    @Override

     public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {

            if (verticalOffset >=0) {

                    swipeRefreshLayout.setEnabled(true);

            }else {

                    swipeRefreshLayout.setEnabled(false);

            }

    }

});

这样在下拉的时候,如果appbar的内容没有显示完,是不会出发swipeRefreshLayout的下拉的

相关文章

网友评论

    本文标题:SwipeRefreshLayout中有AppBarLayout

    本文链接:https://www.haomeiwen.com/subject/sxcbkftx.html