在 J2ME 中禁用 TextField

发布于 2024-12-10 23:40:36 字数 58 浏览 0 评论 0原文

是否可以在 Java ME 运行时动态禁用和启用 TextField 元素?

Is it possible to dynamically make TextField element disabled and enabled during the run time in Java ME?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇俏 2024-12-17 23:40:36

根据API文档, setConstraints(TextField.UNEDITABLE) 可以做类似的事情:

设置 TextField 的输入约束...

请注意,如果您需要保留内容和修饰符标志,传递给上述方法的参数可能需要一些调整,如

    setConstraints((getConstraints() & TextField.CONSTRAINT_MASK)
        | TextField.UNEDITABLE) // "disable" - set UNEDITABLE

上面禁用和启用返回,如下所示:

    setConstraints((getConstraints() & TextField.CONSTRAINT_MASK))
        // "enable" - cleans up TextField.UNEDITABLE

according to API documentation, setConstraints(TextField.UNEDITABLE) could do something like that:

Sets the input constraints of the TextField...

Note if you need to preserve contents and modifier flags, parameter passed to above method might require some tweaking, like

    setConstraints((getConstraints() & TextField.CONSTRAINT_MASK)
        | TextField.UNEDITABLE) // "disable" - set UNEDITABLE

above to disable, and to enable back, something like:

    setConstraints((getConstraints() & TextField.CONSTRAINT_MASK))
        // "enable" - cleans up TextField.UNEDITABLE
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文