其他分享
首页 > 其他分享> > android – Softkeyboard没有在AlertDialog中显示仅用于电话

android – Softkeyboard没有在AlertDialog中显示仅用于电话

作者:互联网

为什么软键盘只在平板电脑上显示是一个谜!

这是我使用过的代码.

AlertDialog.Builder builder = new AlertDialog.Builder(CurrentActivityName.this);
builder.setTitle(“Title”);
builder.setMessage(“Message”);
final EditText input = new EditText(CurrentActivityName.this);
builder.setView(input);
builder.setPositiveButton(R.string.allow, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
//my code
}
});
builder.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
//my code
}
});
builder.create().show();

我能够解决它
using post延迟了一段毫秒的时间来发布Runnable

 input.requestFocus();
 input.postDelayed(new Runnable() {
 @Override
 public void run() {
 InputMethodManager keyboard = (InputMethodManager)
                        getSystemService(Context.INPUT_METHOD_SERVICE);
 keyboard.showSoftInput(input, 0);
                    }
                },200);

绝不建议使用硬编码延迟,因为它们可能会在不同条件/不同设备下引入不可预测的行为.

我正在寻找一些稳定的解决方案.

解决方法:

我解决了这个问题

AlertDialog alertDlg = builder.create();

alertDlg.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);

alertDlg.show();

标签:android-input-method,android-alertdialog,android,android-softkeyboard,android-di
来源: https://codeday.me/bug/20191002/1845344.html