android:imeOptions

来源:互联网 发布:新手效果图制作软件 编辑:程序博客网 时间:2024/06/06 06:34

 android:imeOptions相关

actionUnspecified  未指定,对应常量EditorInfo.IME_ACTION_UNSPECIFIED.  
actionNone 没有动作,对应常量EditorInfo.IME_ACTION_NONE 
actionGo 去往,对应常量EditorInfo.IME_ACTION_GO
actionSearch 搜索,对应常量EditorInfo.IME_ACTION_SEARCH    
actionSend 发送,对应常量EditorInfo.IME_ACTION_SEND   
actionNext 下一个,对应常量EditorInfo.IME_ACTION_NEXT   
actionDone 完成,对应常量EditorInfo.IME_ACTION_DONE  


android:inputType="text"

android:imeOptions="actionSend"


必须要设置android:inputType="text"  后面的才能生效,
0 0