工作中发现在AlertDialog中加入EditText后,软键盘弹出时会遮挡住dialog,在网上结果一番搜索后得出解决方案,这里记录一下。
在styles.xml文件写
<style name="dialog_soft_input" parent="Theme.AppCompat.Dialog.Alert">
<item name="android:windowSoftInputMode">stateVisible|adjustPan</item>
</style>
然后将以上style设置进dialog中,自定义的dialog可以直接写在alertDialog的构造器里
至此,dialog能够正常被弹起
测试机型:小米10pro MIUI12,如有问题,欢迎指出。