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"); shareIntent.putExtra(android.content.Intent.EXTRA_STREAM, Uri.parse("file:///mnt/sdcard/UserImages/"+ ParseUser.getCurrentUser().getObjectId() + ".png")); shareIntent.putExtra(android.content.Intent.EXTRA_TEXT,"Hello test"); startActivity(Intent.createChooser(shareIntent,"Share")); - We have also tried using