导航图打开另一个片段

Navigation graph open another fragment

我有一个简单的应用程序,我试图通过单击按钮打开另一个片段。

我的导航图

<navigation 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:id="@+id/app_navigation"
    app:startDestination="@id/homeFragment">


    <fragment
        android:id="@+id/homeFragment"
        android:name="com.mine.parsexml.HomeFragment"
        android:label="fragment_home"
        tools:layout="@layout/fragment_home" >

        <action
            android:id="@+id/action_homeFragment_to_playerFragment"
            app:destination="@id/playerFragment" />
    </fragment>
    <fragment
        android:id="@+id/playerFragment"
        android:name="com.mine.parsexml.PlayerFragment"
        android:label="fragment_player"
        tools:layout="@layout/fragment_player" />
</navigation>

这是我在片段onClick中的

binding.playVideos.setOnClickListener {
        HomeFragmentDirections.actionHomeFragmentToPlayerFragment()
    }

这是activity布局

<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="match_parent"
        android:layout_height="match_parent"
        app:defaultNavHost="true"
        app:navGraph="@navigation/app_navigation" />

</androidx.constraintlayout.widget.ConstraintLayout>

当我点击按钮时,播放器片段没有打开。

您必须使用 NavController 并使用操作 ID

@Override
  public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
  super.onViewCreated(view, savedInstanceState);
    
   NavController navController = Navigation.findNavController(view);
    
   binding.playVideos.setOnClickListener {
                
   navController.navigate(R.id.action_homeFragment_to_playerFragment);

}

尽管接受的答案有效;但我看到您已经在使用 safeArgs 功能进行导航,因此要使用 safeArgs:

修复该问题
binding.playVideos.setOnClickListener {
    findNavController().navigate(
        HomeFragmentDirections.actionHomeFragmentToPlayerFragment()
    )
}

如果您将参数发送到新的目标片段,优势会更大。