EditView 的imeOptions不起作用
2020-06-14 本文已影响0人
王朋6
如果imeOptions无效 需要 将inputType设置为text
也可以使用java代码设置
editText.setInputType(EditorInfo.TYPE_CLASS_TEXT);
editText.setImeOptions(EditorInfo.IME_ACTION_SEARCH);
如果imeOptions无效 需要 将inputType设置为text
也可以使用java代码设置
editText.setInputType(EditorInfo.TYPE_CLASS_TEXT);
editText.setImeOptions(EditorInfo.IME_ACTION_SEARCH);