Remove scroll bar track from ScrollView in Android

后端 未结 6 1015
被撕碎了的回忆
被撕碎了的回忆 2020-12-23 15:34

My Android app has a main WebView (HTML loaded from a local resource) which I want to use the entire width of the screen and be able to make (vertically) scrollable. So I\'v

6条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-23 16:14

    To remove a scrollbar from a view (and its subclass) via xml:

    android:scrollbars="none"
    

    http://developer.android.com/reference/android/view/View.html#attr_android:scrollbars

提交回复
热议问题