EditView 的imeOptions不起作用

如果imeOptions无效 需要 将inputType设置为text 

也可以使用java代码设置

editText.setInputType(EditorInfo.TYPE_CLASS_TEXT);  

editText.setImeOptions(EditorInfo.IME_ACTION_SEARCH); 

你可能感兴趣的:(EditView 的imeOptions不起作用)