I'm trying to implement android:scrollbars="vertical"
in XML by Java code.
I've tried method setVerticalScrollBarEnabled(true)
but it doesn't work.
Anyone can give me a suggestion?
Thanks in advance.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
you can use
EditText ed=new EditText(context);
ed.setScroller(new Scroller(context));
ed.setVerticalScrollBarEnabled(true);
this will give the scroll option for the edit text but it won't show the scroll bar.