Answers

Question and Answer:

  Home  Team Leader Android Developer

⟩ Tell me how will you pass data to sub-activities?

We can use Bundles to pass data to sub-activities. There are like HashMaps that and take trivial data types. These Bundles transport information from one Activity to another

Code

Bundle b=new Bundle();

b.putString(“Email”, “ggl@xyz.com”);

i.putExtras(b); //where I is intent

 200 views

More Questions for you: