Android软键盘学习InputMethodManager

当我们在Android提供的EditText中单击的时候,会自动的弹出软键盘,其实对于软键盘的控制我们可以通过InputMethodManager这个类来实现。我们需要控制软键盘的方式就是两种一个是像EditText那样当发生onClick事件的时候出现软键盘,还有就是当打开某个程序的时候自动的弹出软键盘。

view plaincopy to clipboardprint?
01.public class InputMethodManagerTest extends Activity implements OnClickListener{  
02.    private Button button;  
03.      
04.    @Override 
05.    protected void onCreate(Bundle savedInstanceState) {  
06.        // TODO Auto-generated method stub  
07.        super.onCreate(savedInstanceState);  
08.        LinearLayout layout=new LinearLayout(this);  
09.        LinearLayout.LayoutParams layoutParams=new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT);  
10.        button=new Button(this);  
11.        button.setId(123);  
12.        button.setText("Hello GaoMatrix");  
13.        button.setOnClickListener(this);  
14.        layout.addView(button, layoutParams);  
15.        setContentView(layout);  
16.          
17.        /** 
18.         * 用一个定时器控制当打开这个Activity的时候就出现软键盘 
19.         */ 
20.        Timer timer=new Timer();  
21.        timer.schedule(new TimerTask() {  
22.            @Override 
23.            public void run() {  
24.                InputMethodManager inputMethodManager=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);  
25.                inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);  
26.            }  
27.        }, 2000);  
28.    }  
29.    /** 
30.     * 当单击事件的时候触发显示软键盘 
31.     */ 
32.    @Override 
33.    public void onClick(View v) {  
34.        InputMethodManager inputMethodManager=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);  
35.        inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);  
36.    }  
37.} 
public class InputMethodManagerTest extends Activity implements OnClickListener{
 private Button button;
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  // TODO Auto-generated method stub
  super.onCreate(savedInstanceState);
  LinearLayout layout=new LinearLayout(this);
  LinearLayout.LayoutParams layoutParams=new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT);
  button=new Button(this);
  button.setId(123);
  button.setText("Hello GaoMatrix");
  button.setOnClickListener(this);
  layout.addView(button, layoutParams);
  setContentView(layout);
  
  /**
   * 用一个定时器控制当打开这个Activity的时候就出现软键盘
   */
  Timer timer=new Timer();
  timer.schedule(new TimerTask() {
   @Override
   public void run() {
    InputMethodManager inputMethodManager=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
   }
  }, 2000);
 }
 /**
  * 当单击事件的时候触发显示软键盘
  */
 @Override
 public void onClick(View v) {
  InputMethodManager inputMethodManager=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
  inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
 }
}
 

这个InputMethodManager类里面的toggleSoftInput方法的API中的解释是:

This method toggles the input method window display. If the input window is already displayed, it gets hidden. If not the input window will be displayed.

这个方法在界面上切换输入法的功能,如果输入法出于现实状态,就将他隐藏,如果处于隐藏状态,就显示输入法。

而对于第二中方式进入Activity就自动显示软键盘,在一个定时器中,也就是在一个线程中执行,只不过是延迟2秒执行,原因是在onCreate函数中Android程序未将屏幕绘制完成。

 

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/GaoMatrix/archive/2011/02/14/6183243.aspx

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值