Android导航网址深层链接回到上一个应用

时间:2020-11-04 20:53:13

标签: android deep-linking android-jetpack android-navigation android-deep-link

我的应用只有两个目的地,即 FirstFragment SecondFragment 。我为 SecondFragment 创建了一个网址深度链接,并且效果很好。

我想要的是,当我从深度链接输入 SecondFragment 之后,我想在按“后退”按钮时返回上一个应用程序。但现在它总是回到 FirstFragment

我已将我的 MainActivity 设置为singleTask上的launchMode,并尝试了以下操作,但不起作用:

override fun onNewIntent(intent: Intent?) {
    super.onNewIntent(intent)

    intent!!.flags = Intent.FLAG_ACTIVITY_NEW_TASK

    navController.handleDeepLink(intent)

    Log.v("MainActivity", "onNewIntent() get called!")
}

1 个答案:

答案 0 :(得分:0)

DeepLink知道您的NavGraph。而且,如果您的SecondFragment是FirstFragment的后裔,那么这就是预期的行为。

当您显示NavGraph以及如何创建DeepLink时,可能会建议其他选项。