关于InputMethodManager的使用方法

InputMethodManager是一个用于控制显示或隐藏输入法面板的类(当然还有其他作用)。
获取InPutMethodManager的方法很简单。

1 InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);

分别介绍其使用方法。

1.showSoftInput(Viewview, int flags)

01 packagetoken.token;
02
03 importandroid.app.Activity;
04 importandroid.content.Context;
05 importandroid.os.Bundle;
06 importandroid.os.IBinder;
07 importandroid.view.View;
08 importandroid.view.ViewGroup;
09 importandroid.view.inputmethod.InputMethodManager;
10 importandroid.widget.Button;
11 importandroid.widget.EditText;
12
13 publicclassTokenActivityextendsActivity {
14 /** Called when the activity is first created. */
15 EditText et =null;
16 InputMethodManager imm =null;
17 IBinder ib =null;
18 Button bt =null;
19 @Override
20 publicvoidonCreate(Bundle savedInstanceState) {
21 super.onCreate(savedInstanceState);
22 setContentView(R.layout.main);
23 et = (EditText)findViewById(R.id.edit);
24 bt = (Button)findViewById(R.id.button);
25
26 imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
27 }
28 publicvoidaa(View v){
29 "color:#e53333;">et.requestFocus();// imm.showSoftInput(et, imm.SHOW_FORCED);//chenggong
30 "color:#e53333;">imm.showSoftInput(et,0);// imm.hideSoftInputFromWindow(bt.getWindowToken(), 0);
31 }
32 }

这个方法的两个参数,showSoftInput(Viewview, int flags)。view是要在哪个view的基础上显示输入面板,同时再使用该方法之前,

view需要获得焦点,可以通过requestFocus()方法来设定

2.hideSoftInputFromWindow(IBinderwindowToken, int flags)

代码如下:

1 publicvoidaa(View v){
2 ib = et.getWindowToken();
3 imm.showSoftInput(bt, 0);
4 imm.hideSoftInputFromWindow(bt.getWindowToken(), 0);
5 }

这里隐藏输入框中的两个参数前一个参数也可以写成et.getWindowToken()。


转自http://my.oschina.net/jbcao/blog/61035


你可能感兴趣的:(关于InputMethodManager的使用方法)