IntentChooser
SMS または WhatsApp を介してのみテキストを共有することを申し出る者を作成したいと考えています。
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");
}
これに、SMS との共有も追加する必要があります。どうすればいいですか?