完美解决隐藏Listview和RecyclerView去掉滚动条

2018-10-26  本文已影响0人  孤城99

完美解决隐藏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可不写,此处写了是引用的透明色)

<ListView
    android:id="@+id/lv_type"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:overScrollFooter="@android:color/transparent"
    android:overScrollHeader="@android:color/transparent"
    android:overScrollMode="never"
    android:scrollbars="none">

二、RecyclerView的属性设置

以下是整体设置:

<android.support.v7.widget.RecyclerView
    android:id="@+id/rv_search_one"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:overScrollMode="never"
    android:scrollbars="none" />
上一篇下一篇

猜你喜欢

热点阅读