标签:sms android
Uri uri = Uri.parse("smsto:10086"); Intent intent = new Intent(Intent.ACTION_SENDTO,uri); intent.putExtra("sms_body","The SMS text"); startActivity(intent);
android发短信的代码
原文地址:http://blog.csdn.net/rainlesvio/article/details/40105843