我有联系人的 _ID 以及与 _ID 联系相关的所有 Raw_contact_id 。
现在,我想通过电子邮件或短信分享此联系人。 那要做什么?
答案 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));