Вы можете открыть свою деятельность с помощью PendingIntent
, а затем открыть свой фрагмент, обработав Intent
внутри своей деятельности.
или этот ответ из аналогичной темы
NavDeepLinkBuilder:
val pendingIntent = NavDeepLinkBuilder(context)
.setComponentName(YourActivity::class.java)
.setGraph(R.navigation.your_nav_graph)
.setDestination(R.id.your_destination)
.setArguments(bundle)
.createPendingIntent()
//then
notificationBuilder.setContentIntent(pendingIntent)