gpt4 book ai didi

android - 如何使用新的导航架构组件禁用某些 fragment 的导航中的 UP?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:34:16 26 4
gpt4 key购买 nike

我正在试用新的 Navigation Architecture Component ,我不知道该怎么做:

我有 1 个 Activity (MainActivity) + 3 个 fragment :

  • SplashFragment(首页)
  • 主要 fragment
  • 注册 fragment

我想使用 SplashFragment 来确定我是否应该导航到 MainFragment 或 SignUpFragment,但是一旦它到达这 2 个中的任何一个,您就不能返回到 SplashFragment。我如何使用新的导航组件做到这一点?

我在调用 navigate(R.id.action_xxx) 之前和之后尝试了 popBackStack,但是它们都不起作用(这是有道理的:在它没有任何东西可以弹出之前;在它关闭刚刚添加的 fragment 之后)。这是否意味着唯一的方法是覆盖 onBackPress 以拦截它并确保 navigateUp 在这些情况下不会被调用?

谢谢!

最佳答案

首先,将属性 app:popUpTo='your_nav_graph_id'app:popUpToInclusive="true" 添加到操作标签。

<fragment
android:id="@+id/signInFragment"
android:name="com.glee.incog2.android.fragment.SignInFragment"
android:label="fragment_sign_in"
tools:layout="@layout/fragment_sign_in" >
<action
android:id="@+id/action_signInFragment_to_usersFragment"
app:destination="@id/usersFragment"
app:launchSingleTop="true"
app:popUpTo="@+id/main_nav_graph"
app:popUpToInclusive="true" />
</fragment>

其次,使用上述操作作为参数导航到目的地。

findNavController(fragment).navigate(SignInFragmentDirections.actionSignInFragmentToUserNameFragment())

注意:如果您使用方法navigate(@IdRes int resId) 进行导航,您将不会获得所需的结果。因此,我使用方法 navigate(@NonNull NavDirections directions)

关于android - 如何使用新的导航架构组件禁用某些 fragment 的导航中的 UP?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50336112/

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