完美解决隐藏Listview和RecyclerView去掉滚动条和滑动到边界阴影的方案

完美解决隐藏Listview和RecyclerView去掉滚动条和滑动到边界阴影的方案

转自:https://blog.csdn.net/ming2316780/article/details/51578621

一、首先是Listview的属性设置

设置滑动到顶部和底部的背景或颜色:

android:overScrollFooter="@android:color/transparent"
android:overScrollHeader="@android:color/transparent"

设置滑动到边缘时无效果模式:

android:overScrollMode="never"

设置滚动条不显示:

android:scrollbars="none"

以下是整体设置(overScrollHeader和overScrollFooter可不写,此处写了是引用的透明色)


二、RecyclerView的属性设置

以下是整体设置:


你可能感兴趣的:(完美解决隐藏Listview和RecyclerView去掉滚动条和滑动到边界阴影的方案)