kotlin 如何在Compose中使用findNavController()

xu3bshqb  于 2023-06-24  发布在  Kotlin
关注(0)|答案(1)|浏览(139)

我目前正在为当前的Kotlin应用程序进行代码重构。我想通过按下Compose视图中的按钮移动到不同的片段。我知道Compose有自己的导航器,但我可以在Compose文件中使用findNavController()吗?我尝试发送一个函数来编写文件,但仍然得到错误:

java.lang.UnsupportedOperationException: Cannot add views to ComposeView; only Compose content is supported

当前代码:
片段中的代码:

binding.composeProgram.setContent {
        MdcTheme {
            ProgramContent(
                viewModel = viewModel,
                navigationController = {
                    findNavController().navigate(
                        R.id.exercise_details,
                        ExerciseDetailFragmentArgs(396).toBundle(),
                        null,
                        null
                    )
                }
            )
        }
    }

合成文件:

@Composable
fun ProgramContent(
    viewModel: ProgramFragmentViewModel,
    navigationController:  () -> (Unit)
) {
    Button(onClick = {
        navigationController()
    }){}
}

解决:我不得不在xmlns文件中添加一行:

android:transitionGroup="true"

在xmlns文件中,它看起来像这样:

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    style="@style/AppTheme.Fragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:transitionGroup="true"
    >

<androidx.compose.ui.platform.ComposeView
        android:id="@+id/compose_program"
        android:layout_width="match_parent"
        android:layout_height="0.dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        />
...
fkvaft9z

fkvaft9z1#

我不得不在xmlns文件中添加一行:

android:transitionGroup="true"

在xmlns文件中,它看起来像这样:

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    style="@style/AppTheme.Fragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:transitionGroup="true"
    >

<androidx.compose.ui.platform.ComposeView
        android:id="@+id/compose_program"
        android:layout_width="match_parent"
        android:layout_height="0.dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        />
...

相关问题