Hide scrollbar in ScrollView

后端 未结 11 1537
时光说笑
时光说笑 2020-12-14 05:19

I have an app with a ScrollView, and I don\'t want the scrollbar to appear on the screen. How can I hide the scrollbar in a ScrollView while making sure scrolling still work

11条回答
  •  萌比男神i
    2020-12-14 05:51

    This will hide the Scroll bar stick but scroll bar is not disable

    android:scrollbarThumbVertical="@null"
    
    android:scrollbarThumbHorizontal="@null"
    

    This will disable the scroll bar

    android:scrollbars="none"
    

提交回复
热议问题