Android Question How to set the whatsapp intent in b4a ?

kalmen

Member
Licensed User
Longtime User
Dear all ,

can i check whether the B4A is able to set the whatsapp intent ?

Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(sendIntent);


as i believe we can find all but not the Intent.EXTRA_TEXT ?
Thanks,
 
Top