最近遇到的一个问题是全屏Activity中要求弹出键盘不顶起布局,首先windowSoftInputMode的取值是有多个的,在全屏场景下adjustPan是没有用的,需要使用adjustResize首先确保键盘不顶起布局。
android:windowSoftInputMode="stateHidden|adjustResize"
但是单纯设置windowSoftInputMode在布局方面又会有新的问题,那就是可能需要在键盘上方展示文本框,但是键盘的高度是不固定的,在全屏场景下布局不被顶起,因此文本框会被键盘遮挡,为解决这个问题,需要在键盘弹起时测量键盘的高度,代码如下
- //在键盘弹起的地方对文本库增加addOnGlobalLayoutListener,我xml的布局是ConstraintLayout
- binding.etDiy.viewTreeObserver
- .addOnGlobalLayoutListener {
- val rect = Rect()
- binding.root.getWindowVisibleDisplayFrame(rect)
- val screenHeight = binding.root.height
- val keypadHeight = screenHeight - rect.bottom
-
- if (keypadHeight > screenHeight * 0.15) {
- if (isSet) return@addOnGlobalLayoutListener
- isSet = true
- val constraintSet = ConstraintSet()
- constraintSet.clone(binding.root)
-
- constraintSet.connect(
- binding.viewBackground.id,
- ConstraintSet.BOTTOM,
- ConstraintSet.PARENT_ID,
- ConstraintSet.BOTTOM,
- keypadHeight
- )
- constraintSet.applyTo(binding.root)
- } else {
- if (!isSet) return@addOnGlobalLayoutListener
- isSet = false
- val constraintSet = ConstraintSet()
- constraintSet.clone(binding.root)
- constraintSet.connect(
- binding.viewBackground.id,
- ConstraintSet.BOTTOM,
- ConstraintSet.PARENT_ID,
- ConstraintSet.BOTTOM,
- 0
- )
- constraintSet.applyTo(binding.root)
- }
- }