Have question regarding
Navigation Architecture component and it's deeplink.
• Destination where I want to navigate belongs to other nested graph. As per
this doc, Navigation using Uri doesn't reset back stack, which is what I want.
But what I see Up and back behaves differently, when destination is activity vs fragment.
• When destination is Fragment, up and back goes back to previous page.
• When destination is Activity,
up goes to the parent activity while
back goes to the previous page.
• My question is, is there any way to achieve same experience with Activity destination?
Up and
Back going back to previous page.