首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

键盘下显示search并响应

2012-09-10 
键盘上显示search并响应在输入框画的焦点后弹出对话框能显示 查找点击并可以进行搜索EditText android:im

键盘上显示search并响应

在输入框画的焦点后弹出对话框能显示 查找点击并可以进行搜索

<EditText android:imeOptions="actionSearch" />?
然后

editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {?
? ? @Override?
? ? public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {?
? ? ? ? if (actionId == EditorInfo.IME_ACTION_SEARCH) {?
? ? ? ? ? ? performSearch();?
? ? ? ? ? ? return true;?
? ? ? ? }?
? ? ? ? return false;?
? ? }?
});?

热点排行