首页 > 移动平台 > 详细

android自动弹出软键盘(输入键盘)

时间:2014-07-29 10:41:26      阅读:399      评论:0      收藏:0      [点我收藏+]
   
很多应用中对于一个界面比如进入搜索界面或者修改信息等等情况,为了用户体验应该自动弹出软键盘而不是让用户主动点击输入框才弹出(因为用户进入该界面必然是为了更改信息)。具体实现这种效果如下:

[代码]java代码

       EditText  editText.setFocusable(true);
          editText.setFocusableInTouchMode(true);
          editText.requestFocus();
  InputMethodManager inputManager =
                      (InputMethodManager)editText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
          inputManager.showSoftInput(editText, 0);

首先要对指定的输入框请求焦点。然后调用输入管理器弹出软键盘。

警告:对于刚跳到一个新的界面就要弹出软键盘的情况上述代码可能由于界面为加载完全而无法弹出软键盘。此时应该适当的延迟弹出软键盘如998毫秒(保证界面的数据加载完成)。实例代码如下:

[代码]java代码:

  Timer timer = new Timer();
       timer.schedule(new TimerTask()
       {
           public void run() 
           {
               InputMethodManager inputManager =
                   (InputMethodManager)editText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
               inputManager.showSoftInput(editText, 0);
           }
       },  
           998);
文章来自: http://www.devdiv.com/home.php?mod=space&uid=65729&do=blog&id=11847

android自动弹出软键盘(输入键盘),布布扣,bubuko.com

android自动弹出软键盘(输入键盘)

原文:http://www.cnblogs.com/xgjblog/p/3873754.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!