AndroidManifest.xml权限
<uses-permission android:name="android.permission.SEND.SMS"/>
SmsManager类中可以使用的3种传送短信的方法:
1.sendDataMessage 发送Data格式的SMS传送到特定程序的Port
2.sendMultipartTextMessage 发送多条文字短信
3.sendTextMessage 发送文字短信
本文共 263 字,大约阅读时间需要 1 分钟。
AndroidManifest.xml权限
<uses-permission android:name="android.permission.SEND.SMS"/>
SmsManager类中可以使用的3种传送短信的方法:
1.sendDataMessage 发送Data格式的SMS传送到特定程序的Port
2.sendMultipartTextMessage 发送多条文字短信
3.sendTextMessage 发送文字短信
转载于:https://my.oschina.net/robslove/blog/508419