สำหรับความรู้ของฉัน StackOverflow มีผู้คนมากมายที่ถามคำถามนี้ด้วยวิธีการต่าง ๆ แต่ยังไม่มีใครตอบคำถามได้อย่างสมบูรณ์
สเป็คของฉันเรียกร้องให้ผู้ใช้สามารถเลือกอีเมล, Twitter, Facebook หรือ SMS พร้อมข้อความที่กำหนดเองสำหรับแต่ละคน นี่คือวิธีที่ฉันทำสำเร็จ:
public void onShareClick(View v) {
Resources resources = getResources();
Intent emailIntent = new Intent();
emailIntent.setAction(Intent.ACTION_SEND);
// Native email client doesn't currently support HTML, but it doesn't hurt to try in case they fix it
emailIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(resources.getString(R.string.share_email_native)));
emailIntent.putExtra(Intent.EXTRA_SUBJECT, resources.getString(R.string.share_email_subject));
emailIntent.setType("message/rfc822");
PackageManager pm = getPackageManager();
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("text/plain");
Intent openInChooser = Intent.createChooser(emailIntent, resources.getString(R.string.share_chooser_text));
List<ResolveInfo> resInfo = pm.queryIntentActivities(sendIntent, 0);
List<LabeledIntent> intentList = new ArrayList<LabeledIntent>();
for (int i = 0; i < resInfo.size(); i++) {
// Extract the label, append it, and repackage it in a LabeledIntent
ResolveInfo ri = resInfo.get(i);
String packageName = ri.activityInfo.packageName;
if(packageName.contains("android.email")) {
emailIntent.setPackage(packageName);
} else if(packageName.contains("twitter") || packageName.contains("facebook") || packageName.contains("mms") || packageName.contains("android.gm")) {
Intent intent = new Intent();
intent.setComponent(new ComponentName(packageName, ri.activityInfo.name));
intent.setAction(Intent.ACTION_SEND);
intent.setType("text/plain");
if(packageName.contains("twitter")) {
intent.putExtra(Intent.EXTRA_TEXT, resources.getString(R.string.share_twitter));
} else if(packageName.contains("facebook")) {
// Warning: Facebook IGNORES our text. They say "These fields are intended for users to express themselves. Pre-filling these fields erodes the authenticity of the user voice."
// One workaround is to use the Facebook SDK to post, but that doesn't allow the user to choose how they want to share. We can also make a custom landing page, and the link
// will show the <meta content ="..."> text from that page with our link in Facebook.
intent.putExtra(Intent.EXTRA_TEXT, resources.getString(R.string.share_facebook));
} else if(packageName.contains("mms")) {
intent.putExtra(Intent.EXTRA_TEXT, resources.getString(R.string.share_sms));
} else if(packageName.contains("android.gm")) { // If Gmail shows up twice, try removing this else-if clause and the reference to "android.gm" above
intent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(resources.getString(R.string.share_email_gmail)));
intent.putExtra(Intent.EXTRA_SUBJECT, resources.getString(R.string.share_email_subject));
intent.setType("message/rfc822");
}
intentList.add(new LabeledIntent(intent, packageName, ri.loadLabel(pm), ri.icon));
}
}
// convert intentList to array
LabeledIntent[] extraIntents = intentList.toArray( new LabeledIntent[ intentList.size() ]);
openInChooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, extraIntents);
startActivity(openInChooser);
}
ฉันพบบิตของวิธีการทำเช่นนี้ในสถานที่ต่าง ๆ แต่ฉันไม่ได้เห็นมันทั้งหมดในที่เดียวที่อื่น
โปรดทราบว่าวิธีนี้ยังซ่อนตัวเลือกโง่ ๆ ทั้งหมดที่ฉันไม่ต้องการเช่นการแชร์ผ่าน wifi และบลูทู ธ
หวังว่านี่จะช่วยใครซักคน
แก้ไข:
ในความคิดเห็นฉันถูกขอให้อธิบายว่ารหัสนี้ทำอะไร โดยพื้นฐานแล้วมันเป็นการสร้างความACTION_SEND
ตั้งใจให้กับไคลเอนต์อีเมลพื้นฐานเท่านั้นจากนั้นจึงทำการแทรกความตั้งใจอื่น ๆ ลงบนตัวเลือก การสร้างความตั้งใจเฉพาะทางอีเมลดั้งเดิมกำจัดขยะพิเศษทั้งหมดเช่น wifi และ bluetooth จากนั้นฉันก็คว้าสิ่งอื่นที่ฉันต้องการจากACTION_SEND
ข้อความธรรมดาประเภททั่วไปและตรึงมันไว้ก่อนที่จะแสดงตัวเลือก
เมื่อฉันเพิ่มความตั้งใจเพิ่มเติมฉันจะกำหนดข้อความที่กำหนดเองสำหรับแต่ละรายการ
Edit2:นานมานี้ตั้งแต่ฉันโพสต์สิ่งนี้และสิ่งต่าง ๆ เปลี่ยนไปเล็กน้อย หากคุณเห็น gmail สองครั้งในรายการตัวเลือกให้ลองลบการจัดการพิเศษสำหรับ "android.gm" ตามที่แนะนำในความคิดเห็นโดย @h_k ด้านล่าง
เนื่องจากคำตอบเดียวนี้เป็นที่มาของคะแนนชื่อเสียงสแต็คโอเวอร์โฟลว์เกือบทั้งหมดของฉันฉันจึงต้องพยายามปรับปรุงให้ทันสมัยอยู่เสมอ