Hide scrollbar in ScrollView

后端 未结 11 1531
时光说笑
时光说笑 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条回答
  •  时光取名叫无心
    2020-12-14 05:51

    you have to try the following solutions

        android:scrollbars="none"
    

    OR

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

    OR Change color of scrollBars to hide them

        android:scrollbarThumbVertical="@android:color/transparent"
    

提交回复
热议问题