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

有帮助吗?

解决方案

Please try this

scrollView.setVerticalScrollBarEnabled(false);

If you are using HorizontalScrollView then

horizontalScrollView.setHorizontalScrollBarEnabled(false);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top