我正在显示一个带有edittext视图的对话框。但是,仅当用户按下编辑视图内部时,才会打开软键盘。所以我尝试使用以下代码调用InputMethodManager。
InputMethodManager imm =
(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(dialogField,0);
dialogField是输入字段。但是,我到底应该这样做呢?我在对话框的onStart()方法中尝试过,但没有任何反应。我之前也尝试过请求对话框的焦点,但这没有任何改变。
我也试过这段代码
dialogField.setOnFocusChangeListener(new View.OnFocusChangeListener()
{
public void onFocusChange (View v, boolean hasFocus)
{
if (hasFocus)
{
Main.log("here");
dialogInput.getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
/*
InputMethodManager mgr =
(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
mgr.showSoftInput(dialogField,0);
*/
}
}
});
两个版本。但是没有软键盘会出现。 Main.log只是一个日志,它向我显示该函数实际被调用。是的,它被称为。
在对话框打开之前,我可以使用SHOW_FORCED标志获取键盘。但是在退出时它不会关闭。而且我只能在显示对话框之前这样做。在任何回调中它都不起作用。
答案 0 :(得分:159)
很棒的问题,我也试图这样做,并找到了解决方案。
使用对话框构建器类AlertDialog.Builder
,您必须调用如下对话框:
AlertDialog.Builder builder = new AlertDialog.Builder();
AlertDialog dialog;
builder.set...
dialog = builder.create();
dialog.getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);
dialog.show();
这对我来说很好。
注意:您必须import android.view.WindowManager.LayoutParams;
获取常量值。
答案 1 :(得分:4)
AlertDialog dialog = new AlertDialog.Builder(this).create();
dialog.show();
Window window = dialog.getWindow();
window.clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
答案 2 :(得分:1)
这是经过测试的代码。
val dialog = AlertDialog.Builder(requireContext()).apply {
setTitle(…)
setView(editText)
setPositiveButton(…)
setNegativeButton(…)
}
val window = dialog.show().window
window?.clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE or WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM)
window?.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE)
确保您从window
方法访问show()
属性。从window
方法获取create()
的过程是为我返回null
的,所以键盘没有显示。
从AlertDialog
导入androidx.appcompat.app.AlertDialog
。
从WindowManager
导入android.view
。
答案 3 :(得分:0)
与Kotlin对话的片段
覆盖onStart方法
override fun onStart() {
super.onStart()
dialog.window?.
setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE
)
}
如果您要在关闭后关闭,请使用以下代码覆盖关闭方法
override fun onDismiss(dialog: DialogInterface?) {
val inputMethodManager = context?.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
inputMethodManager.hideSoftInputFromWindow(activity?.currentFocus?.windowToken, InputMethodManager.HIDE_IMPLICIT_ONLY)
}
答案 4 :(得分:-3)
这似乎是不可能的。
所以我创建了一个新的Activity而不是Dialog,让用户在那里编辑。请注意,在活动中,您可以在清单文件中设置键盘模式。我将其设置为在活动开始时显示。
另请注意,使用硬键在模拟器上进行测试不会打开SHOW_IMPLICIT或0标记的键盘。