NavController.handleDeepLink()不工作。

问题描述 投票:2回答:1

我试图在应用程序中使用:-来处理一个深层链接,但它并没有导航到任何页面。

findNavigationController.handleDeepLink(intent)

的深层链接,而不是导航到任何页面。

以下是我如何创建意图:-的。

val deepLinkIntent = Intent()
val deeplink = "https://myapp.com/myscreen"
deepLinkIntent.data = Uri.parse(deeplink)
findNavigationController.handleDeepLink(deepLinkIntent) // this returning false

我的做法正确吗?如果不正确,处理应用内深层链接的正确方法是什么(我需要处理一些内部推广卡)?

android deep-linking navigation-architecture
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.