Send Image And Text Both Using ACTION_SEND Or ACTION_SEND_MULTIPLE
- We have tried to post image and text using the below code: final Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND_MULTIPLE); shareIntent.setType('image/png'); s
Solution 1:
Now your code gonna work due the new updates to whatsapp, before this didn't accept this kind of intent (ACTION_SEND_MULTIPLE) because it accepts only one file at a time.
Post a Comment for "Send Image And Text Both Using ACTION_SEND Or ACTION_SEND_MULTIPLE"