Hide scrollbar in ScrollView

后端 未结 11 1535
时光说笑
时光说笑 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:57

    In Java add this code

    myScrollView.setVerticalScrollBarEnabled(false);
    myScrollView.setHorizontalScrollBarEnabled(false);
    

    In XML add following attribute to your ScrollView

    android:scrollbars="none"
    

    Like this

    
    >
    

提交回复
热议问题