在 J2ME 中禁用 TextField
是否可以在 Java ME 运行时动态禁用和启用 TextField
元素?
Is it possible to dynamically make TextField
element disabled and enabled during the run time in Java ME?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据API文档, setConstraints(TextField.UNEDITABLE) 可以做类似的事情:
请注意,如果您需要保留内容和修饰符标志,传递给上述方法的参数可能需要一些调整,如
上面禁用和启用返回,如下所示:
according to API documentation, setConstraints(TextField.UNEDITABLE) could do something like that:
Note if you need to preserve contents and modifier flags, parameter passed to above method might require some tweaking, like
above to disable, and to enable back, something like: