Friends,
In the android "whatsapp messenger" version 2.11.399 (September 30, 2014), you can add a title (text description) to the overall image.
I share the image through intention as follows:
Intent share = new Intent(android.content.Intent.ACTION_SEND); share.setType("image/jpeg"); Uri imageUri = Uri.fromFile(file); share.putExtra(Intent.EXTRA_STREAM, imageUri); //share.putExtra(Intent.EXTRA_TEXT, "This is my text to send."); // NOT WORKING startActivity(share);
How to add text to the image title?
android android-intent whatsapp caption
robert
source share