gpt4 book ai didi

带有底部导航的 Android 导航组件不会破坏 startDestination fragment

转载 作者:行者123 更新时间:2023-12-03 17:12:37 25 4
gpt4 key购买 nike

我用 nav graph 设置了底部导航,以最基本的方式 -

NavigationUI.setupWithNavController(bottomNavigationView, navHostFragment.navController)

声明为 startDestination 的 fragment 从它导航时永远不会被破坏(只是暂停),而所有其他 fragment 在导航离开时都会被破坏。

(我需要将其销毁,以便在与之关联的 View 模型中调用 onCleared())。

知道为什么吗?或如何改变这种行为?

导航:
<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/navigation"
app:startDestination="@id/drawingFragment">

<fragment
android:id="@+id/controllerFragment"
android:name="com.example.android.myApp.ControllerFragment"
android:label="fragment_controller"
tools:layout="@layout/fragment_controller" >
<action
android:id="@+id/action_controllerFragment_to_drawingFragment"
app:destination="@id/drawingFragment" />
</fragment>
<fragment
android:id="@+id/drawingFragment"
android:name="com.example.android.myApp.DrawingFragment"
android:label="fragment_drawing"
tools:layout="@layout/fragment_drawing" >
<action
android:id="@+id/action_drawingFragment_to_clippingFragment"
app:destination="@id/clippingFragment"
app:launchSingleTop="true"
app:popUpTo="@+id/drawingFragment"
app:popUpToInclusive="true" />
</fragment>
<fragment
android:id="@+id/clippingFragment"
android:name="com.example.android.myApp.ClippingFragment"
android:label="fragment_clipping"
tools:layout="@layout/fragment_clipping" />

主要 Activity :
class MainActivity : AppCompatActivity() {

private lateinit var navHostFragment: NavHostFragment
private lateinit var bottomNavigationView: BottomNavigationView


override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
setUpNavigation()
}

fun setUpNavigation(){
bottomNavigationView = findViewById(R.id.bttm_nav)
navHostFragment = supportFragmentManager.findFragmentById(R.id.nav_host_fragment) as NavHostFragment

NavigationUI.setupWithNavController(bottomNavigationView, navHostFragment.navController)}

Activity 主/xml:
<?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">

<fragment
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/navigation" />

<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bttm_nav"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:itemTextAppearanceActive="@style/bottomNaActive"
app:itemTextAppearanceInactive="@style/bottomNavInactive"
app:layout_constraintBottom_toBottomOf="@+id/nav_host_fragment"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:menu="@menu/bottom_menu_nav" />
</androidx.constraintlayout.widget.ConstraintLayout>

最佳答案

这实际上是没有答案,而不是对@isrzanza 答案的评论(对不起,没有足够的声誉)。

我假设在 BottomNavigationView 的情况下没有 向上 .对我来说,我可以从这里导航的每个 fragment 更像 邻居 分别同等重要所以我认为不仅这些 ViewModel 被清除,而且我假设在导航 时 fragment 本身将通过 onDestroy 销毁离开 .

不知道为什么特别起始 fragment 应该留在内存中,而其他的则不应该,因为它们同样重要,不是吗?

编辑:

我还想提一下,我注意到如果我再次导航到 startDestination-fragment 会创建一个相同类型的新 fragment (onCreate 将再次执行)并且旧 fragment 将被销毁(onDestroy 将被执行)。对我来说,这是另一种资源浪费。将这种情况的 fragment 保留在内存中并在之后重新创建它对我来说毫无意义。希望我在这里误解了一些东西:)

关于带有底部导航的 Android 导航组件不会破坏 startDestination fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59561013/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com