如何以编程方式启用编辑文本的垂直滚动条
我正在尝试通过 Java 代码在 XML 中实现 android:scrollbars="vertical"
。 我尝试过方法 setVerticalScrollBarEnabled(true)
但它不起作用。 有人可以给我一个建议吗? 提前致谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用
EditText ed=new EditText(context);
ed.setScroller(new Scroller(上下文));
ed.setVerticalScrollBarEnabled(true);
这将为编辑文本提供滚动选项,但不会显示滚动条。
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.