Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个代码来禁用/隐藏 android 键盘中的语音输入键。谢谢
@tim您可以android:inputType="text|textVisiblePassword|textMultiLine"在您的xml中添加到EditText。这段代码隐藏了语音输入,但自动建议将同时关闭。
android:inputType="text|textVisiblePassword|textMultiLine"
您不能“禁用/隐藏 android 键盘中的语音输入键”。如果您正在编写自己的输入法(又名软键盘),则可以选择不使用语音输入键,但不能从系统提供的或第三方键盘中删除键。