android 短信分享

来源:互联网 发布:麦当劳改名金拱门知乎 编辑:程序博客网 时间:2024/05/16 13:48

//不指定电话号码的短信分享

Intent intent = new Intent(Intent.ACTION_SENDTO,Uri.parse("smsto:"));

intent.putExtra("sms_body", "测试");

startActivity(intent);


//指定电话号码的短信分享

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.putExtra("address", "10086");
intent.putExtra("sms_body", "1");
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);


//人人、qq、微信等分享
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_SUBJECT, "title");
intent.putExtra(Intent.EXTRA_TEXT, "content");
intent.setType("text/*");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(Intent.createChooser(intent, “title”));


0 0