通过邮件和消息在android中分享联系

时间:2012-07-27 10:06:02

标签: android android-intent android-contacts

我有联系人的 _ID 以及与 _ID 联系相关的所有 Raw_contact_id

现在,我想通过电子邮件或短信分享此联系人。 那要做什么?

  • 是否有任何可以直接用于分享联系的意图?
  • 如果有其他方式请建议我。

1 个答案:

答案 0 :(得分:0)

我曾使用过这段代码:

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(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to));