Pergunta

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

Foi útil?

Solução

Please try this

scrollView.setVerticalScrollBarEnabled(false);

If you are using HorizontalScrollView then

horizontalScrollView.setHorizontalScrollBarEnabled(false);
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top