android editText 监听事件

Posted 奶霸000

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android editText 监听事件相关的知识,希望对你有一定的参考价值。

在软键盘中注意

在监听的 edittext中 

使用android:imeOptions属性的时候,一定要对EditText设置 android:inputType 或者 设置 android:singleline=”true”

 

 

在activity_main.xml文件中,定义了8个EditText,imeOptions分别是: 
actionDone 完成 对应 EditorInfo.IME_ACTION_DONE 
actionGo 前进 对应 EditorInfo.IME_ACTION_GO 
actionNext 下一项 对应 EditorInfo.IME_ACTION_NEXT 
actionNone 无动作 对应 EditorInfo.IME_ACTION_NONE 
actionPrevious 上一项 对应 EditorInfo.IME_ACTION_PREVIOUS 
actionSearch 搜索 对应 EditorInfo.IME_ACTION_SEARCH 
actionUnspecified 未指定 对应 EditorInfo.IME_ACTION_UNSPECIFIED 
actionSend 发送 对应 EditorInfo.IME_ACTION_SEND

监听方法

 

以上是关于android editText 监听事件的主要内容,如果未能解决你的问题,请参考以下文章

android 通过监听edittext实现button的点击事件

Android,Studio的EditText控件的回车监听事件无效

EditText中onEditorAction监听事件执行两次

玩转Android---事件监听篇---第2篇

Android开发之基于监听的事件处理

Android 获取软键盘的删除delete事件