安卓调用系统发送短信

 Uri smsToUri = Uri.parse("smsto:10086");
		    Intent intent = new Intent( android.content.Intent.ACTION_SENDTO, smsToUri );
		    intent.putExtra("sms_body", "这是内容");
		    startActivity( intent );

猜你喜欢

转载自zhonglunshun.iteye.com/blog/2068004