android InputMethodManager 输入类型

发布于 2024-12-04 00:59:33 字数 82 浏览 1 评论 0原文

是否可以从键盘获取当前的输入类型(文本或数字)?或者当输入类型改变时是否会触发一个事件?我需要根据用户退出该屏幕时的输入类型在屏幕上设置输入类型。谢谢

Is it possible to get the current input type (text or numbers) from keyboard? Or is there an event that is triggered when input type is changed? I need to set input type on a screen based on what input type was when user exited that screen. Thanks

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

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

发布评论

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

评论(1

仅冇旳回忆 2024-12-11 00:59:33
editText.getInputType();

这些方法以整数格式返回 EditTextBox 的输入类型。

您可以像这样使用InputType接口来获取所有InputTyp

InputType.TYPE_CLASS_NUMBER;
InputType.TYPE_CLASS_TEXT;
editText.getInputType();

These method return the Input type of the of the EditTextBox in integer format.

you can get the of all the InputTyp by using InputType interface like this way

InputType.TYPE_CLASS_NUMBER;
InputType.TYPE_CLASS_TEXT;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文