I want to create an IntentChooser
who offer to share text only via SMS or WhatsApp.
Here is my code to share via WhatsApp:
Intent localIntent = new Intent(Intent.ACTION_SEND);
localIntent.setType("text/plain");
localIntent.setPackage("com.whatsapp");
if (localIntent != null) {
localIntent.putExtra(Intent.EXTRA_TEXT, "Hi there! I'm using this app");
startActivity(Intent.createChooser(localIntent, "Hi there! I'm using this app");
}
I need to add to this also sharing with SMS. How can I do it?