android EditText inputType 及 android:imeOptions=”actionDone”
如果布局中包含多个EditText,可以为每个EditText控件设置android:singleLine=”true”,弹出的软盘输入法中回车键为next,直到最后一个获取焦点后显示为Done。点击Done后,隐藏软键输入盘。将EditText的imeOptions属性设置android:imeOptions=”actionDone”,则不管是不是最后一个EditText,点击回车键即隐藏输入法。
监听Enter的事件,编写Enter的事件响应。设置文本框的OnKeyListener,当keyCode ==KeyEvent.KEYCODE_ENTER的时候,表明Enter键被按下,就可以编写自己事件响应功能了。
XML文件如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <EditText android:id= "@+id/editTextId" android:layout_width= "fill_parent" android:layout_height= "50dp" android:imeOptions= "actionDone" android:hint= "@string/task_new_one" android:textSize= "15sp" android:singleLine= "true" android:paddingLeft= "5dp" android:layout_gravity= "center" android:background= "@drawable/rectangle" android:inputType= "text" > </EditText> |
把EditText的Ime Options属性设置成不同的值,Enter键上可以显示不同的文字或图案。
actionNone : 回车键,按下后光标到下一行
actionGo : Go,
actionSearch : 一个放大镜
actionSend : Send
actionNext : Next
actionDone : Done,隐藏软键盘,即使不是最后一个文本输入框
- 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 效果:
1 2 | EditText inputText = (EditText) findViewById(R.id. editTextId); inputText.setImeOptions(EditorInfo.IME_ACTION_DONE); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | private final EditText.OnEditorActionListener editorActionListener = new TextView.OnEditorActionListener() { @Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { if (actionId == KeyEvent.ACTION_DOWN || actionId == EditorInfo.IME_ACTION_DONE) { //业务代码 haoMent.createTest(Test.getId(), v.getText().toString()); UiUtils.hideSoftKeyboard(getApplicationContext(), haoTest. this ); v.setText( "" ); v.clearFocus(); handler.post(updateView); } return true ; } }; |
inputKey = (EditText) findViewById(R.id.contactSearch_editText);
inputKey.addTextChangedListener(watcher);
inputKey.setOnKeyListener(new View.OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
if (KeyEvent.KEYCODE_ENTER == keyCode && event.getAction() == KeyEvent.ACTION_DOWN) {
handler.post(updateView);
return true;
}
return false;
}
});
//响应键盘内容
public TextWatcher watcher = new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i2,int i3) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i2, int i3) {
}
@Override
public void afterTextChanged(Editable editable) {
handler.post(updateView);
}
};
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | android:inputType= "none" --输入普通字符 android:inputType= "text" --输入普通字符 android:inputType= "textCapCharacters" --输入普通字符 android:inputType= "textCapWords" --单词首字母大小 android:inputType= "textCapSentences" --仅第一个字母大小 android:inputType= "textAutoCorrect" --前两个自动完成 android:inputType= "textAutoComplete" --前两个自动完成 android:inputType= "textMultiLine" --多行输入 android:inputType= "textImeMultiLine" --输入法多行(不一定支持) android:inputType= "textNoSuggestions" --不提示 android:inputType= "textUri" --URI格式 android:inputType= "textEmailAddress" --电子邮件地址格式 android:inputType= "textEmailSubject" --邮件主题格式 android:inputType= "textShortMessage" --短消息格式 android:inputType= "textLongMessage" --长消息格式 android:inputType= "textPersonName" --人名格式 android:inputType= "textPostalAddress" --邮政格式 android:inputType= "textPassword" --密码格式 android:inputType= "textVisiblePassword" --密码可见格式 android:inputType= "textWebEditText" --作为网页表单的文本格式 android:inputType= "textFilter" --文本筛选格式 android:inputType= "textPhonetic" --拼音输入格式 android:inputType= "number" --数字格式 android:inputType= "numberSigned" --有符号数字格式 android:inputType= "numberDecimal" --可以带小数点的浮点格式 android:inputType= "phone" --拨号键盘 android:inputType= "datetime" android:inputType= "date" --日期键盘 android:inputType= "time" --时间键盘 |

赠人玫瑰
手留余香
我们曾如此渴望命运的波澜,到最后才发现:人生最曼妙的风景,竟是内心的淡定与从容……我们曾如此期盼外界的认可,到最后才知道:世界是自己的,与他人毫无关系!-杨绛先生
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 三行代码完成国际化适配,妙~啊~
· .NET Core 中如何实现缓存的预热?