其他分享
首页 > 其他分享> > android – 使用AlertDialog.Builder显示软键盘(数字)

android – 使用AlertDialog.Builder显示软键盘(数字)

作者:互联网

我在AlertDialog中有一个EditText,但是当它弹出时,我必须在键盘弹出之前单击文本框.此EditText在XML布局中声明为“number”,因此当单击EditText时,会弹出一个数字小键盘.我想消除这个额外的点击,并在加载AlertDialog时弹出数字小键盘.

我发现的所有其他解决方案都涉及使用

dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);

这不是一个可接受的解决方案,因为这会导致标准键盘而不是数字键盘弹出.有没有人有办法在AlertDialog中弹出数字键盘,最好是保持我的布局在XML中定义?

AlertDialog dialog = new AlertDialog.Builder(this)
    .setTitle("Mark Runs")
    .setView(markRunsView)
    .setPositiveButton("OK", new DialogInterface.OnClickListener() {                        
        @Override
        public void onClick(DialogInterface dialog, int which) {
            EditText runs = (EditText)markRunsView.findViewById(R.id.runs_marked);
            int numRuns = Integer.parseInt(runs.getText().toString());
         // ...
        })
    .setNegativeButton("Cancel", null)
    .show();

编辑:我想非常清楚我的布局已经有了:

android:inputType="number"
android:numeric="integer"

我也试过这个:

//...
.setNegativeButton("Cancel", null)
.create();
EditText runs = (EditText)markRunsView.findViewById(R.id.runs_marked);
runs.setInputType(InputType.TYPE_CLASS_NUMBER);
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
dialog.show();

但那也行不通.使用setSoftInputMode行,我可以在AlertDialog加载时获得完整的键盘;没有它,我仍然一无所获.在任何一种情况下,点击文本框都会弹出数字键盘.

再次编辑:

这是EditText的XML

<EditText
    android:id="@+id/runs_marked"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="4dip"
    android:inputType="number"
    android:numeric="integer">
    <requestFocus/>
</EditText>

解决方法:

来得有点晚了,但今天我遇到了同样的问题.这就是我解决它的方式:

对话框打开时调用键盘就像你一样:

 dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);

现在,进入Dialog我假设你有一个只接受数字的EditText字段.只需要关注该字段,标准键盘就会自动转换为数字键盘:

final EditText valueView = (EditText) dialogView.findViewById(R.id.editText);
valueView.requestFocus();

现在,您必须记住在完成Dialog后关闭键盘.只需将其放入正/负/中性按钮单击监听器:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(valueView.getWindowToken(), 0);

标签:android-keypad,android,alertdialog
来源: https://codeday.me/bug/20190826/1733418.html