服务调用 - 短信/彩信 - Android 开发入门指南

1. 启动短信应用

// 调用短信程序
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.putExtra("sms_body", "短信内容");
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);

2. 发送短信

// 传送消息
Uri uri = Uri.parse("smsto://0800000123");
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
intent.putExtra("sms_body", "短信内容");
startActivity(intent);

3. 发送彩信

// 传送彩信
Uri uri = Uri.parse("content://media/external/images/media/23");
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra("sms_body", "文本内容");
intent.putExtra(Intent.EXTRA_STREAM, uri);
intent.setType("image/png");
startActivity(intent);