我正在使用 jetpack compose (1.0.0-beta09) 在我的项目上实现一个屏幕,但我在一个需要始终可见的页脚的屏幕上遇到了一个问题,即使键盘打开,我知道我们在 android 上有 'adjustResize' 可以在正常活动中解决这个问题(我有很多带有这种页脚类型的屏幕并且它正在工作),但是如果我将 adjustResize 放在清单上或活动的 onCreate 方法上进行组合键盘继续隐藏页脚:
这是我没有打开键盘的屏幕,只是为了弄清楚我在说什么
这是键盘打开的屏幕
清单活动标签,我试图在键盘已经打开并且页脚在他上方可见的情况下打开屏幕:
<activity
android:name=".presentation.creation.billing.NewBookingBillingActivity"
android:exported="true"
android:hardwareAccelerated="true"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/AppThemeBase.Compose"
android:windowSoftInputMode="stateVisible|adjustResize"/>
onCreate 方法:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
injectFeature()
initView()
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE)
setContent {
BuildScreen()
}
}
我知道在 manifest 和 onCreate 上使用 setSoftInputMode 是多余的,但我正在尝试任何方法。
-
我的屏幕组合范围:
Column(fillMaxSize){
- AppBar
- Box(fillMaxSize){
//lazycolumn used to enable scroll with bottom padding to prevent last item to be hided below the footer
- LazyColumn(fillMaxSize | contentPadding) {
//TextFields of the screen
}
//footer
- Box(fillMaxWidth | height 53 | align.centerBottom){
//footer content
}
}
}