如何在使用导航时关闭 Android 中的当前片段?
How to close current fragment in Android while using Navigation?
在按钮上设置侦听器后,我创建了 navigationOnClickListener,它将 startDestination 设置为当前片段,在 .navigate() 之后它将目标更改为另一个片段,但视图没有改变
onClickListener
navController = Navigation.findNavController(requireActivity(), R.id.nav_host_fragment)
view.findViewById<Button>(R.id.fragment_button).setOnClickListener {
navController.navigate(R.id.Camera2VideoFragment_To_FirstFragment)
}
closeFragment()
private fun closeFragment()
{
closePreviewSession()
closeCamera()
parentFragmentManager.popBackStack()
updatePreview()
}
main.xml(导航图)
<?xml version="1.0" encoding="utf-8"?>
<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/main.xml"
app:startDestination="@id/cameraFragment"
>
<fragment
android:id="@+id/cameraFragment"
android:name="com.example.camera2videotextureview.Camera2VideoFragment"
android:label="Camera2VideoFragment"
tools:layout="@layout/fragment_camera2_video">
<action
android:id="@+id/navigateToSecondFragment"
app:destination="@id/firstFragment" />
</fragment>
<fragment
android:id="@+id/firstFragment"
android:name="com.example.camera2videotextureview.FirstFragment"
android:label="FirstFragment"
tools:layout="@layout/fragment_first" />
</navigation>
主要片段是使用 Camera2 API 的相机片段。 FirstFragment 只是空白的 kotlin class,其中布局仅包含一个 TextView。
编辑: 现在我已经编辑了 onClickListener,我不能改变当前视图,我需要在当前片段上使用 popBackStack,但不知道如何。
Navigation.findNavController(mActivity, R.id.nav_host_fragment).popBackStack();
我解决了我的问题,即我尝试实现了 3 种不同风格的导航。整个导航在过去 4 年发生了变化,我还发现我混淆了低 API 和高 API 的不同版本。
我不再使用 closeFragment() 方法了。
代码中的以下声明和代码本身必须在 MainActivity 中实现:
navController = Navigation.findNavController(requireActivity(), R.id.nav_host_fragment)
view.findViewById<Button>(R.id.fragment_button).setOnClickListener {
navController.navigate(R.id.Camera2VideoFragment_To_FirstFragment)
}
您还必须在 xml 文件中为 MainActivity 正确设置 nav_host_fragment:
<androidx.fragment.app.FragmentContainerView
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"
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
app:defaultNavHost="true"
app:navGraph="@navigation/main"
/>
在按钮上设置侦听器后,我创建了 navigationOnClickListener,它将 startDestination 设置为当前片段,在 .navigate() 之后它将目标更改为另一个片段,但视图没有改变
onClickListener
navController = Navigation.findNavController(requireActivity(), R.id.nav_host_fragment)
view.findViewById<Button>(R.id.fragment_button).setOnClickListener {
navController.navigate(R.id.Camera2VideoFragment_To_FirstFragment)
}
closeFragment()
private fun closeFragment()
{
closePreviewSession()
closeCamera()
parentFragmentManager.popBackStack()
updatePreview()
}
main.xml(导航图)
<?xml version="1.0" encoding="utf-8"?>
<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/main.xml"
app:startDestination="@id/cameraFragment"
>
<fragment
android:id="@+id/cameraFragment"
android:name="com.example.camera2videotextureview.Camera2VideoFragment"
android:label="Camera2VideoFragment"
tools:layout="@layout/fragment_camera2_video">
<action
android:id="@+id/navigateToSecondFragment"
app:destination="@id/firstFragment" />
</fragment>
<fragment
android:id="@+id/firstFragment"
android:name="com.example.camera2videotextureview.FirstFragment"
android:label="FirstFragment"
tools:layout="@layout/fragment_first" />
</navigation>
主要片段是使用 Camera2 API 的相机片段。 FirstFragment 只是空白的 kotlin class,其中布局仅包含一个 TextView。
编辑: 现在我已经编辑了 onClickListener,我不能改变当前视图,我需要在当前片段上使用 popBackStack,但不知道如何。
Navigation.findNavController(mActivity, R.id.nav_host_fragment).popBackStack();
我解决了我的问题,即我尝试实现了 3 种不同风格的导航。整个导航在过去 4 年发生了变化,我还发现我混淆了低 API 和高 API 的不同版本。
我不再使用 closeFragment() 方法了。
代码中的以下声明和代码本身必须在 MainActivity 中实现:
navController = Navigation.findNavController(requireActivity(), R.id.nav_host_fragment)
view.findViewById<Button>(R.id.fragment_button).setOnClickListener {
navController.navigate(R.id.Camera2VideoFragment_To_FirstFragment)
}
您还必须在 xml 文件中为 MainActivity 正确设置 nav_host_fragment:
<androidx.fragment.app.FragmentContainerView
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"
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
app:defaultNavHost="true"
app:navGraph="@navigation/main"
/>