Android Listview hide scroll bar

Set the attributes in the label.
android:fastScrollEnabled="false" The
following attribute scrollbars can be set to none or not. The effect will be a little different. Decide whether to set to none according to the specific situation.
android:scrollbars="none"
attribute fastScrollEnabled description:

Enables the fast scroll thumb that can be dragged to quickly
scroll through the list. [boolean]
Translation: Allow fast scroll thumb to quickly scroll through the list .
Attribute scrollbars description:
Defines which scrollbars should be displayed on scrolling or not.
Translation : Defines which scrollbars should be displayed on scrolling or not .

Guess you like

Origin blog.csdn.net/qq_42362997/article/details/105517934