I have a ArrayList documents and I want to send this file to another Activity. but How to get This value in SecondActivity
What I tried is In First Activity
private ArrayList<File> documents;
Intent selectLabInt = new Intent(FirstActivity.this, SecondActivity.class);
selectLabInt.putExtra("patient_name", patientNameStr);
selectLabInt.putExtra("referal_notes", referalNotesStr);
selectLabInt.putExtra("fileList",documents);
startActivity(selectLabInt);