How do you do something like this on B4A (The forum search is unavailable at this moment)
I can's see how to add EXTRA_STREAM.
Thanks.
B4X:
Uri mmsUri = Uri.parse("content://media/external/images/media/1");
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra("sms_body", "Hi how are you");
intent.putExtra(Intent.EXTRA_STREAM, mmsUri);
intent.setType("image/png");
startActivity(intent);
I can's see how to add EXTRA_STREAM.
Thanks.