We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我遇到了在项目中引入dialogx版本大于0.0.46,虚拟键盘打开时,输入框就会被顶上去,严重的直接顶出屏幕无法看到输入框
大于0.0.46都有这个问题
任何设备
否
[截屏/视频 #/
The text was updated successfully, but these errors were encountered:
这是符合预期的设计,当输入法弹出时应当主动调整对话框的位置以避免输入法的遮挡。
特殊情况如果需要禁用此功能,可以通过 .setEnableImmersiveMode(false),例如:
.setEnableImmersiveMode(false)
new InputDialog("标题", "正文内容", "确定", "取消", "正在输入的文字") .setInputText("Hello World") .setOkButton(new OnInputDialogButtonClickListener<InputDialog>() { @Override public boolean onClick(InputDialog baseDialog, View v, String inputStr) { PopTip.show("输入的内容:" + inputStr); return false; } }) .setEnableImmersiveMode(false) //禁用安全区适配 .show();
Sorry, something went wrong.
好的,感谢
No branches or pull requests
问题描述
我遇到了在项目中引入dialogx版本大于0.0.46,虚拟键盘打开时,输入框就会被顶上去,严重的直接顶出屏幕无法看到输入框
DialogX 版本
大于0.0.46都有这个问题
设备信息
任何设备
是否在 Demo 中能复现此问题?
否
问题截图/视频
[截屏/视频 #/
错误日志
The text was updated successfully, but these errors were encountered: