我在AlertDialog中有一个EditText,但是当它弹出时,我必须在键盘弹出之前单击文本框。此EditText在XML布局中声明为“number”,因此当单击EditText时,会弹出一个数字小键盘。我想消除这个额外的点击,并在加载AlertDialog时弹出数字小键盘。
我发现的所有其他解决方案都涉及使用
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
这是 NOT 可接受的解决方案,因为这会导致标准键盘而不是数字键盘弹出。有没有人有办法在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>
答案 0 :(得分:3)
迟到了,但今天我遇到了同样的问题。这就是我解决它的方法:
在对话框打开时调用键盘,就像你一样:
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
现在,在Dialog中我假设你有一个只接受数字的EditText字段。只需请求专注于该字段,标准键盘将自动转换为数字键盘:
final EditText valueView = (EditText) dialogView.findViewById(R.id.editText);
valueView.requestFocus();
现在,您必须记住在完成对话后关闭键盘。只需将其放入正/负/中性按钮单击监听器:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(valueView.getWindowToken(), 0);
答案 1 :(得分:2)
尝试使用setInputType()设置InputType。
EditText runs = (EditText)markRunsView.findViewById(R.id.runs_marked);
runs.setInputType(InputType.TYPE_NUMBER_FLAG_DECIMAL);
答案 2 :(得分:1)
我认为你应该继续使用setSoftInputMethod hack,但也提供你想要数字输入的android提示。
使用xml布局属性
为此,您可以将多个xml属性用于EditText xml定义(有关可用选项,请参阅android:inputType)
示例:
<EditText android:inputType="phone" ...
<EditText android:inputType="number" ...
<EditText android:inputType="numberSigned" ...
<EditText android:inputType="numberDecimal" ...
你也可以提示android显示数字键盘和使用android:numeric
将输入限制为可接受的字符示例:
<EditText android:numeric="integer" ...
<EditText android:numeric="signed" ...
<EditText android:numeric="decimal" ...
<强>编程方式强>
使用EditText.setRawInputType(int)和常量,例如android:inputType
或TextView.setKeyListener(new NumberKeyListener())
修改强>
默认情况下,AlertDialog在正面按钮上进行对焦。这似乎是造成麻烦的地方。您可以查看this similar question及其答案。
答案 3 :(得分:0)
尝试在编辑框的布局xml中指定:
<EditText ...>
<requestFocus/>
</EditText>