i have an image uri which are store in Arraylist and i put this Arraylist in the intent using putExtra().but i have no idea how to get ArrayList in uri form??
else if(data!=null){
clipData = data.getClipData();
ArrayList<Uri> arrayList = new ArrayList<>();
for(int i=0;i<clipData.getItemCount();i++){
Uri uri=clipData.getItemAt(i).getUri();
arrayList.add(uri);
}
Intent intent=new Intent(getBaseContext(),BackUp_Main.class);
intent.putExtra("multipleImage",arrayList);
startActivity(intent);
}
how can i get Arraylist in Uri from??