android dialog遮挡键盘,彻底解决软键盘遮挡DialogFragment

本文介绍了解决Android中EditText使用时,对话框被软键盘遮挡的问题方法。通过设置Dialog的inputMode,阻止软键盘自动上移,并监听输入状态变化,动态调整dialog的底部padding,确保组件可见。务必在销毁时移除全局监听,以避免资源泄露。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

问题描述

点击edittext,弹出软键盘,dialog略微上移,edittext和下面的按钮还是被遮挡,上移的部分被切割

解决方案

设置dialog的inputMode,取消软键盘弹出自动上移

监听软键盘弹出事件,动态设置dialog的paddingBottom

override fun init() {

dialog?.window?.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING)

globalListener = KeyboardUtils.registerSoftInputChangedListener(activity, object : KeyboardUtils.OnSoftInputChangedListener {

override fun onSoftInputChanged(height: Int) {

dialog?.window?.apply {

if (height > 10) {

decorView.setPadding(0, 0, 0, 400)

} else {

decorView.setPadding(0, 0, 0, 0)

}

attributes = attributes

}

}

})

}

override fun onDestroy() {

super.onDestroy()

if (globalListener != null) {

KeyboardUtils.unregisterSoftInputChangedListener(activity, globalListener!!)

}

}

fun registerSoftInputChangedListener(activity: Activity,

listener: OnSoftInputChangedListener?)

: ViewTreeObserver.OnGlobalLayoutListener {

val contentView = activity.findViewById(android.R.id.content)

sContentViewInvisibleHeightPre = getContentViewInvisibleHeight(activity)

val globalListener = ViewTreeObserver.OnGlobalLayoutListener {

if (listener != null) {

val height = getContentViewInvisibleHeight(activity)

if (sContentViewInvisibleHeightPre != height) {

listener.onSoftInputChanged(height)

sContentViewInvisibleHeightPre = height

}

}

}

contentView.viewTreeObserver.addOnGlobalLayoutListener(globalListener)

return globalListener

}

fun unregisterSoftInputChangedListener(activity: Activity,

listener: ViewTreeObserver.OnGlobalLayoutListener) {

val contentView = activity.findViewById(android.R.id.content)

contentView.viewTreeObserver.removeOnGlobalLayoutListener(listener)

}

private fun getContentViewInvisibleHeight(activity: Activity): Int {

val contentView = activity.findViewById(android.R.id.content)

val outRect = Rect()

contentView.getWindowVisibleDisplayFrame(outRect)

return contentView.bottom - outRect.bottom

}

总结

dialog销毁一定要移除global监听,否则回调里面拿到的window是上一次的

本文地址:https://blog.csdn.net/weixin_37165769/article/details/110235489

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值