如何在科特林中从一个片段转到另一个片段?

How to go from one fragment to another fragment in kotlin?

我在片段 A 中有一个按钮,当我点击片段 A 时,我希望它被重定向到片段 B。如何在 kotlin 中实现这一点?现在我正在使用此代码,但应用程序崩溃了。

btntest.setOnClickListener {
            var intent = Intent(view.context, FragmentB::class.java)
            startActivity(intent)
        }

我建议你看看 the navigation component. First, you create a Navigation resource file (usually referred to as Nav Graph), where you add the fragments you wish to connect. 确保为每个片段提供一个 ID(稍后您将使用它在它们之间导航)。此外,您可以使用 app:startDestination 来设置要显示的第一个片段。

<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    app:startDestination="@id/blankFragment">
    <fragment
        android:id="@+id/blankFragment"
        android:name="com.example.cashdog.cashdog.BlankFragment"
        android:label="@string/label_blank"
        tools:layout="@layout/fragment_blank" />
</navigation>

然后,在将托管片段的 activity/fragment 中,添加 FragmentContainerView 并将图表设置为您创建的图表。

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/nav_host_fragment"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"

        app:defaultNavHost="true"
        app:navGraph="@navigation/nav_graph" />

</androidx.constraintlayout.widget.ConstraintLayout>

最后,为了在片段之间导航,请在承载导航的 Activity 中使用它(如果片段承载导航,则使用 getActivity())。

// as per defined in your FragmentContainerView
val navHostFragment = supportFragmentManager.findFragmentById(R.id.nav_host_fragment) as NavHostFragment
val navController = navHostFragment.navController

// Navigate using the IDs you defined in your Nav Graph
navController.navigate(R.id.blankFragment)

来源:https://developer.android.com/guide/navigation/navigation-getting-started

编辑:如果您想访问 Fragment 中的控制器,请使用 activity?.supportFragmentManager 获取片段管理器。

在导航图中设置操作后,在 From Fragment 中尝试此操作 xml。

findNavController().navigate(R.id.action_from_fragmentA_to_fragmentB)