Here I post images from my application to whatsapp.but, this code works here only for mylist1 [i], and not for mylist2 [i] and mylist3 [i]. Like my activity file, there are 15 images in each list. what to do?
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("image/*");
Uri uri = Uri.parse("android.resource://com.example.drawcelebrities/"+mylist1[i]+mylist2[i]+mylist3[i]);
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(intent, "Share via"));
source
share