自定义对话框软键盘无法打开。 我怎么解决? 我已尝试使用
几乎所有方法首先使用String string = imageUri.toString();
Uri test_uri = Uri.parse(string);
iv_test.setImageURI(test_uri);
打开键盘,不起作用,
第二次使用InputMethodManager
并使用InputMethodManager
也不起作用。
第三次使用AlertEditText1.requestFocus();
,它是 OPENS 键盘,但不会输入AlertEditText
我使用的代码:
dialog.getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);
还有其他解决方案吗?谢谢你的帮助!