调用系统接口发送短信

String smsContent = getwSMS(mReourceManager, current);
                Uri smsToUri = Uri.parse("smsto:");
                Intent sendIntent = new Intent( android.content.Intent.ACTION_SENDTO, smsToUri );
                sendIntent.putExtra("sms_body", smsContent);

猜你喜欢

转载自yulincqupt.iteye.com/blog/1779925