Start a Project

How to pass data from activity to fragment in android

We Know how to send the data from the Activity to another Activity. But what if we want to send the data from Activity to fragment?

So the technique is very similar to send data to activity. For sending the data to fragment we use the Bundle.

Bundles: A mapping from String keys to various Parcelable values. They are generally used for passing data between various Android activities and fragments.

How to pass data from Activity to Fragment

There are simple blocks of code to pass data from the Activity to fragments.

Step 1: Passing the data from activity to fragment,

Step 2: Receiving the data to the fragment,

 

Source: https://developer.android.com/

 

 

 

 

 

Exit mobile version