欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何屏蔽RecyclerView单边滑动到头阴影(fadingEdge)

程序员文章站 2022-06-09 10:49:59
...

如何屏蔽RecyclerView单边滑动到头阴影(fadingEdge)

  • 场景:由于在某些产品需求下,希望RecyclerView滑动到底部时显示到头阴影,但由于顶部是下拉刷新控件而不希望显示顶部的fadingEdge。

  • 做法:通过阅读RecyclerView的源码实现,我们发现没有暴露的方法可被调用或重载,故采用反射的方式实现。

  • 代码如下:

 mRecyclerView.setOnScrollListener(new RecyclerView.OnScrollListener() {
            @Override
            public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
                super.onScrolled(recyclerView, dx, dy);

                EdgeEffectCompat mTopGlow = null;
                try {
                    Field topGlow = mRecyclerView.getClass().getDeclaredField("mTopGlow");

                    if (topGlow != null) {
                        topGlow.setAccessible(true);
                        mTopGlow = (EdgeEffectCompat) topGlow.get(mRecyclerView);
                    }

                } catch (Exception e) {
                    e.printStackTrace();
                }

                if (mTopGlow != null) {
                    mTopGlow.setSize(0, 0);
                    mTopGlow.finish();
                }
            }

        });
  • 如有其他更优方案,欢迎讨论。