摘要

AlertDialog中加入EditText但是不弹出软键盘等问题网上有很多不管用的解决方案,有的方案是强制弹出软键盘,然而即使弹出来,也是显示在AlertDialog的后面,被Dialog遮挡。

解决方案

Dialog的官方文档:http://developer.android.com/reference/android/app/Dialog.html ,其中有一段:

Note: Activities provide a facility to manage the creation, saving and restoring of dialogs. See onCreateDialog(int), onPrepareDialog(int, Dialog), showDialog(int), and dismissDialog(int). If these methods are used, getOwnerActivity() will return the Activity that managed this dialog.

Often you will want to have a Dialog display on top of the current input method, because there is no reason for it to accept text. You can do this by setting the WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM window flag (assuming your Dialog takes input focus, as it the default) with the following code:

getWindow().setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,        WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);

这段话的大概意思是说,WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM 这个参数会让Dialog遮挡住软键盘,显示在软键盘的前面。

这是默认情况下隐藏软键盘的方法,要重新显示软键盘,要执行下面这段代码:

alertDialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);

我是把它写在了setOnFocusChangeListener里,起效了

editText.setOnFocusChangeListener(new View.OnFocusChangeListener() {    @Override    public void onFocusChange(View view, boolean focused) {        if (focused) {             //dialog弹出软键盘             alertDialog.getWindow()                   .clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);           }    }});

AlertDialog.setView()则不会出现以上问题。

另外

为了防止弹出输入法时把后面的背景挤变形,可以在Manifest里的相应Activity添加:

android:windowSoftInputMode="adjustPan|stateHidden"

像这样:

<activity    android:name=".MainActivity"    android:windowSoftInputMode="adjustPan|stateHidden"    android:label="@string/app_name">    <intent-filter>        <action android:name="android.intent.action.MAIN" />        <category android:name="android.intent.category.LAUNCHER" />    intent-filter>activity>

【参考资料】

1、关于AlertDialog中EditText不能弹出输入法解决方法

更多相关文章

  1. Android软键盘样式的控制
  2. 关于android软键盘enter键的替换与事件监听
  3. Toast 在android 4.0中问题解决方案
  4. Android软键盘使用总结
  5. android去掉titlebar的最优解决方案

随机推荐

  1. MIT开发应用为Android手机增添超级计算能
  2. 关于android的9path图片处理
  3. 知识点梳理6 散碎点
  4. Android开机自启动程序设置及控制方法
  5. Android(安卓)API Guides---Drawable Res
  6. Android工程师怒斥360拦截弹窗广告
  7. Android系统架构解析
  8. Android(安卓)页面回调跳转(startActivity
  9. Android之隐式意图(Intent)如何查找匹配
  10. Android控件之TextView全解析