仅在电话的 AlertDialog 中未显示软键盘
Posted
技术标签:
【中文标题】仅在电话的 AlertDialog 中未显示软键盘【英文标题】:Softkeyboard not showing in AlertDialog for phone only 【发布时间】:2015-08-16 06:29:03 【问题描述】:为什么软键盘只在平板电脑上显示是个谜!
这是我使用的代码。
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 postDelayed
以 毫秒数 发布 Runnable
input.requestFocus();
input.postDelayed(new Runnable()
@Override
public void run()
InputMethodManager keyboard = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
keyboard.showSoftInput(input, 0);
,200);
硬编码延迟不推荐,因为它们可能会在不同条件/不同设备下引入不可预测的行为。
我正在寻找一些稳定的解决方案。
【问题讨论】:
【参考方案1】:我解决了问题
AlertDialog alertDlg = builder.create();
alertDlg.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
alertDlg.show();
【讨论】:
以上是关于仅在电话的 AlertDialog 中未显示软键盘的主要内容,如果未能解决你的问题,请参考以下文章