I have found this intent to share image with caption to whatsapp,Its working well in Android studio ,Could some one convert it to B4A...?
B4X:
Uri uri = Uri.parse("/storage/emulated/0/a.jpg");
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT, "whatsAppMessage");
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_STREAM,uri);
intent.setType("image/jpeg");
intent.setPackage("com.whatsapp");
startActivity(intent);
Last edited: