Remove scroll bar track from ScrollView in Android

后端 未结 6 996
被撕碎了的回忆
被撕碎了的回忆 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:24

    These solutions Failed in my case with Relative Layout and If KeyBoard is Open android:scrollbars="none" & android:scrollbarStyle="insideOverlay" also not working.

    toolbar is gone, my done button is gone.

    This one is Working for me

    myScrollView.setVerticalScrollBarEnabled(false);
    

提交回复
热议问题