如何禁用Android键盘中的语音输入键
我需要一个代码来禁用/隐藏 Android 键盘中的语音输入键。 谢谢
i need a code to disable/hide the voice input key in android keyboard.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要一个代码来禁用/隐藏 Android 键盘中的语音输入键。 谢谢
i need a code to disable/hide the voice input key in android keyboard.
thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
@tim您可以将
android:inputType="text|textVisiblePassword|textMultiLine"
添加到 xml 中的 EditText 。这段代码隐藏了语音输入,但自动建议也会同时关闭。@tim You can add
android:inputType="text|textVisiblePassword|textMultiLine"
to EditText in your xml. This piece of code hides the voice input but auto-suggestion will be closed at the same time.您无法“禁用/隐藏 Android 键盘中的语音输入键”。如果您正在编写自己的输入法(也称为软键盘),则可以选择不使用语音输入键,但不能从系统提供的或第三方键盘中删除按键。
You cannot "disable/hide the voice input key in android keyboard". If you are writing your own input method (a.k.a., soft keyboard), you can elect not to have the voice input key, but you cannot remove keys from system-supplied or third-party keyboards.