Question

How can I set the property android:Scrollbars="none" dynamically?

Était-ce utile?

La solution

Please try this

scrollView.setVerticalScrollBarEnabled(false);

If you are using HorizontalScrollView then

horizontalScrollView.setHorizontalScrollBarEnabled(false);
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top