android:selecting multiple images in gallery and starting implicit intent
How to get the image path of all the selected images or just display them in my app? I am able to start my implicit intent and display it in my imageView when a user selects image in gallery and press share button like shown below ImageView iv=(ImageView)findViewById(R.id.im); iv.setImageUri((Uri)getIntent().getExtras().get(Intent.EXTRA_STREAM)); in manifest file for my activity <intent-filter > <action android:name="android.intent.action.SEND"/> <category android:name="android.intent.category.DEFAULT"/> <data android:mimeType="image/*" /> </intent-filter> But i want to select multiple images