我试图从前台服务通知中导航到导航图中的一个片段。我使用了下面的代码来创建一个显式的深度链接,这个链接没有像预期的那样工作。
val pendingIntent = NavDeepLinkBuilder(this) // this is the Service context!
.setComponentName(MainActivity::class.java)
.setGraph(R.navigation.primary_app_nav)
.setDestination(R.id.shareSheetFragment)
我遵循来实现安卓的深度链接。以下是本教程的要求:
Android Studio version 1.0+
The sample code
The Google app version 2.8+
A test device with Android 4.1+
A USB micro to USB cable.
因此,在此基础上,我可以理解深度链接的最小API是Android4.1 (API >= 17)。但是在我跟随之后,我真的没有看到任何使用API>=17的函数,您只需在manifest.xml文件中注册,在活动中处理,就可以了。
因此,我的问题是:我能否在较老的Android (