获取recyclerView 滑动距离

妖精的绣舞 提交于 2019-12-02 13:42:43
    View getHeightView = new View(context);

    recycler_view.addOnScrollListener(new RecyclerView.OnScrollListener() {
        @Override
        public void onScrollStateChanged(RecyclerView recyclerView, int newState) {
            super.onScrollStateChanged(recyclerView, newState);
            if (newState == RecyclerView.SCROLL_STATE_DRAGGING) {
                SoftPanUtil.hideSoftKeyboard(ChatDetailActivity.this);
    
                if (emojiKeyboard != null) {
                    emojiKeyboard.hide();
                }
            }
        }
    
        @Override
        public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
            super.onScrolled(recyclerView, dx, dy);
    
            getHeightView.scrollBy(0, dy);
            LogUtils.e("滑动高度" + getHeightView.getScrollY());
        }
    });
复制代码

新建一个view 存储滑动的距离吗,获取的距离较为精确 ,在哪看到的不记得了

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!