Am working in a project with an Activity that host many fragments. Now I need to share some data (integers, strings, arraylist) between these fragments.
First time i use
We can share the Data between fragments in 2 ways.
By Using Bundle
By using Persistence Storage
By Using Bundle:-
Bundle bundle=new Bundle();
bundle.putString("firstName",Fist);
bundle.putString("LastName",lastN);
Second Persistence Storage :- this you can check how to store Data in Persistence Storage. Hope it will work for you