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.
我的系统自动使用谷歌键盘。是否可以从谷歌键盘启用或禁用隐身模式?我的操作系统版本是 9.0
您只需要在您的edittext setImeOptions上放置一个标志,从您打开键盘的位置如下
EditText editText; editText.setImeOptions(IME_FLAG_NO_PERSONALIZED_LEARNING);
当您要启用隐身键盘时添加此行。