Pregunta

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

¿Fue útil?

Solución

Please try this

scrollView.setVerticalScrollBarEnabled(false);

If you are using HorizontalScrollView then

horizontalScrollView.setHorizontalScrollBarEnabled(false);
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top