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
If you are making "custom" HorizontalScrollView then you should set those properties in code like so
this.scrollBarSize = 0 this.isHorizontalScrollBarEnabled = false
That is the only way I got mine to work.