InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
//隐藏软键盘
// imm.hideSoftInputFromWindow(tv.getWindowToken(), 0);
...
分类:
移动开发 时间:
2015-05-26 18:57:16
阅读次数:
124
/**
?*?点击空白区域隐藏键盘.
?*?@param?event?the?event
?*?@return?true,?if?successful
?*/
@Override
public?boolean?onTouchEvent(MotionEvent?event)?{
InputMethodManager?imm...
分类:
移动开发 时间:
2015-05-19 15:06:56
阅读次数:
163
case R.id.back:// 返回 ((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE)) .hideSoftInputFromWindow(AccountActivity.this .getCurrentF...
分类:
其他好文 时间:
2015-05-05 10:29:46
阅读次数:
104
public static void hideKeyboard(Context context) { // 隐藏软键盘 try { InputMethodManager imm = ((InputMethodManager) context ...
分类:
其他好文 时间:
2015-05-04 17:44:40
阅读次数:
98
一、布局中软键盘自动弹出bargain_dialog_offer_edit.requestFocus();bargain_dialog_offer_edit.setFocusable(true);InputMethodManager imm = (InputMethodManager) contex...
分类:
移动开发 时间:
2015-04-30 19:51:50
阅读次数:
132
1 /**2 * 隐藏软键盘3 * @param v4 */5 public static void hideSoftKeyboard(View v) {6 InputMethodManager imm = (InputMethodMan...
分类:
移动开发 时间:
2015-04-17 21:41:45
阅读次数:
143
1、方法一(如果输入法在窗口上已经显示,则隐藏,反之则显示)
[java] view
plaincopyprint?
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(0,...
分类:
移动开发 时间:
2015-04-10 15:34:15
阅读次数:
270
一、自动弹出软键盘Timertimer=newTimer();timer.schedule(newTimerTask(){publicvoidrun(){InputMethodManagerinputMethodManager=(InputMethodManager)getSystemService...
分类:
移动开发 时间:
2015-04-07 02:00:02
阅读次数:
136
网上可以搜到各种方法,实际测试中,我的开发用机中,仅仅下面这个方法有效,记录一下。 //隐藏虚拟键盘 public static void HideKeyboard(View v) { InputMethodManager imm = ( InputMethodManager ) ...
分类:
移动开发 时间:
2015-04-03 15:02:10
阅读次数:
130