【发布时间】:2016-12-22 08:49:06
【问题描述】:
我想创建一个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 共享。我该怎么做?
【问题讨论】:
-
您最好使用警报对话框制作自己的选择器。工作量不大。
标签: android sms whatsapp android-intent-chooser