该问题是由于Jetpack Compose版本不兼容而导致的。解决方法是更新依赖项,如下所示:
将以下依赖项添加到build.gradle文件中:
dependencies { implementation "androidx.activity:activity-compose:1.3.1" implementation "androidx.compose.ui:ui:1.0.0" implementation "androidx.compose.material:material:1.0.0" implementation "androidx.compose.runtime:runtime-livedata:1.0.0" }
然后sync和build项目。