喷气背包上的 AdjustResize 组合不起作用

时间:2021-07-19 12:32:35

标签: android android-manifest android-jetpack-compose window-soft-input-mode adjustpan

我正在使用 jetpack compose (1.0.0-beta09) 在我的项目上实现一个屏幕,但我在一个需要始终可见的页脚的屏幕上遇到了一个问题,即使键盘打开,我知道我们在 android 上有 'adjustResize' 可以在正常活动中解决这个问题(我有很多带有这种页脚类型的屏幕并且它正在工作),但是如果我将 adjustResize 放在清单上或活动的 onCreate 方法上进行组合键盘继续隐藏页脚:

这是我没有打开键盘的屏幕,只是为了弄清楚我在说什么

That's my screen without the keyboard opened, just to figure what I'm talking about

这是键盘打开的屏幕

And that's the screen with the keyboard opened

清单活动标签,我试图在键盘已经打开并且页脚在他上方可见的情况下打开屏幕:

<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
     }
     
   }
}

1 个答案:

答案 0 :(得分:1)

我猜问题出在您的 LazyColumn 修饰符上。 如果您将 weight 设置为 1f。它会起作用。

Column(Modifier.fillMaxSize()) {
    TextField(value = "", onValueChange = {})
    TextField(value = "", onValueChange = {})
    LazyColumn(Modifier.weight(1f)) {

    }
    Row {
       Button(onClick = { /*TODO*/ }) {
           Text(text = "Ok")
       }
    }
}

结果如下:

enter image description here