I am creating a social media application in which user can share images, videos, audios etc. I am successful in receiving the medias that shares from third party application by adding the below code in manifest file.
<activity
android:name=".activity.SendToActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.AppCompat.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
Now I want to show multiple icons of my application when a user try to share an image from their gallery like facebook(set as profile pic) to upload profile image directly. Please see the screenshot
Somebody please help me to show multiple icons of my application when a user try to share an image from their gallery.