I am trying to pass arraylist between fragments in Android development. This is the part where I tried to pass Transaction array list to another fragment:
sw
add this gradle in your build.gradle compile 'com.google.code.gson:gson:2.7'
build.gradle
compile 'com.google.code.gson:gson:2.7'
String str = new Gson().toJson(arrayList); bundle.putStrin("str",str);
and destination fragemnt
String str = bundle.getString("str"); arrayList = new Gson().fromJson(str,ArrayList.class);