gpt4 book ai didi

android - 每当打开 AlertDialog.Builder 对象时显示软键盘

转载 作者:IT老高 更新时间:2023-10-28 21:47:34 27 4
gpt4 key购买 nike

我打开输入对话框的代码如下:

final AlertDialog.Builder alert = new AlertDialog.Builder(this);  
alert.setTitle("Dialog Title");
alert.setMessage("Request information");
LayoutInflater factory = LayoutInflater.from(this);
final View textEntryView = factory.inflate(R.layout.edittextautotextlayout, null);
final EditText inputBox = (EditText) textEntryView.findViewById(R.id.my_et_layout);
alert.setView(inputBox);

这很好用,只是我必须在软键盘出现之前点击文本输入行。

遵循给出的建议 here我试过插入:

inputBox.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
alert.getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
}
}
});

但是 Eclipse 对象“方法 getWindow() 没有为 AlertDialog.Builder 类型定义”。

似乎 setOnFocusChangeListener 代码适用于 AlertDialog 对象,但不适用于 AlertDialog.Builder。我应该如何修改我的代码以使软键盘自动出现。

最佳答案

只要您总是需要在对话框打开后立即显示键盘,而不是在内部的特定表单小部件获得焦点时(例如,如果您的对话框仅显示 EditText 和按钮) ,您可以执行以下操作:

AlertDialog alertToShow = alert.create();
alertToShow.getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
alertToShow.show();

您可以调用 .create(),而不是立即在您的构建器上调用 .show(),这允许您在显示之前对其进行一些额外的处理它在屏幕上。

关于android - 每当打开 AlertDialog.Builder 对象时显示软键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4054662/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com