当前位置: 代码迷 >> Android >> android调用系统发短信界面效能
  详细解决方案

android调用系统发短信界面效能

热度:37   发布时间:2016-05-01 18:46:27.0
android调用系统发短信界面功能

android调用系统发短信界面功能

?

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

?

需要的权限:

?

<uses-permission android:name="android.permission.SEND_SMS"></uses-permission>
?
  相关解决方案