android 后台发短信

时间:2014-05-12 12:51:06
【文件属性】:

文件名称:android 后台发短信

文件大小:125KB

文件格式:RAR

更新时间:2014-05-12 12:51:06

android sms

后台发短信,并监听发送状态! public void sendMSG(String phoneNum, String content) { SmsManager smsManager = SmsManager.getDefault(); Intent itSend = new Intent(SMS_SEND_ACTIOIN); Intent itDeliver = new Intent(SMS_DELIVERED_ACTION); PendingIntent mSendPI = PendingIntent.getBroadcast(context, 0, itSend, 0); PendingIntent mDeliverPI = PendingIntent.getBroadcast(context, 0, itDeliver, 0); smsManager .sendTextMessage(phoneNum, null, content, mSendPI, mDeliverPI); }


【文件预览】:
SendMSGInBackGround
----.project(855B)
----default.properties(362B)
----bin()
--------SendMSGInBackGround.apk(20KB)
--------com()
--------.svn()
--------resources.ap_(15KB)
--------classes.dex(6KB)
----proguard.cfg(1KB)
----AndroidManifest.xml(731B)
----.svn()
--------props()
--------entries(926B)
--------text-base()
--------format(2B)
--------tmp()
--------prop-base()
----src()
--------com()
--------.svn()
----res()
--------values()
--------layout()
--------drawable-ldpi()
--------drawable-hdpi()
--------.svn()
--------drawable()
--------drawable-mdpi()
----.classpath(280B)
----gen()
--------com()
--------.svn()
----assets()
--------.svn()

网友评论

  • 不错 很实用 谢谢
  • 不错 很实用 谢谢
  • 没用上 参考使用 谢谢
  • 跟我自己写的代码差不多,还是可以的
  • 在我的项目中有参考,谢谢!
  • 我已用在我的项目中了,谢谢开发者。
  • 不错 很实用 谢谢
  • 有用,但是一定记得在main.xml中添加活动指引语句。。
  • 前段时间我开发类似的应用,对我帮助很大