Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Navigation Architecture Component- Passing argument data to the startDestination

I have an activity A that start activity B passing to it some intent data. Activity B host a navigation graph from the new Navigation Architecture Component.I want to pass that intent data to the startDestination fragment as argument how to do that?

like image 368
Ahmed Abdelmeged Avatar asked May 14 '18 15:05

Ahmed Abdelmeged


People also ask

What is navigation architecture component?

Among other goodies, Android Jetpack comes with the Navigation architecture component, which simplifies the implementation of navigation in Android apps. In this tutorial, you'll add navigation to a simple book-searching app and learn about: Navigation graphs and nested graphs. Actions and destinations.


2 Answers

TLDR: You have to manually inflate the graph, add the keys/values to the defaultArgs, and set the graph on the navController.

Step 1

The documentation tells you to set the graph in the <fragment> tag in your Activity's layout. Something like:

<fragment     android:id="@+id/navFragment"     android:name="androidx.navigation.fragment.NavHostFragment"     app:graph="@navigation/nav_whatever"     app:defaultNavHost="true"     /> 

REMOVE the line setting the graph=.

Step 2

In the Activity that will be displaying your NavHostFragment, inflate the graph like so:

val navHostFragment = navFragment as NavHostFragment val inflater = navHostFragment.navController.navInflater val graph = inflater.inflate(R.navigation.nav_whatever) 

Where navFragment is the id you gave your fragment in XML, as above.

Step 3 [Crucial!]

Create a bundle to hold the arguments you want to pass to your startDestination fragment and add it to the graph's default arguments:

val bundle = Bundle() // ...add keys and values graph.addDefaultArguments(bundle) 

Step 4

Set the graph on the host's navController:

navHostFragment.navController.graph = graph 
like image 58
Elliot Schrock Avatar answered Sep 22 '22 01:09

Elliot Schrock


OK, I found a solution to that problem thanks to Ian Lake from the Google team. Let say you have an activity A that will start activity B with some intent data and you want to get that data in the startDestination you have two options here if you using safe args which is my case you could do

StartFragmentArgs.fromBundle(requireActivity().intent?.extras)

to read the args from the Intent. If you don't use safe args you can extract the data from the bundle your self-using requireActivity().intent?.extras which will return a Bundle you can use instead of the fragment getArguments() method. That's it I try it and everything works fine.

like image 43
Ahmed Abdelmeged Avatar answered Sep 20 '22 01:09

Ahmed Abdelmeged