Domanda

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

È stato utile?

Soluzione

Please try this

scrollView.setVerticalScrollBarEnabled(false);

If you are using HorizontalScrollView then

horizontalScrollView.setHorizontalScrollBarEnabled(false);
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top