Android短信发送功能实现技巧分享

编程人员可以对Android手机操作系统进行一些更改来满足用户的需求。不过要想对其进行修改,首先需要了解其源码的编写方式。在这里我们先来看看Android短信功能的具体实现,来体验一下相关编写方式。

1: Android短信发送可以在模拟器中进行模拟出来。 

如现在启动一模拟器id 号为5554,运行cmd 
telnet localhost 5554

输入help 可以看到很多用于模拟器中的功能命令

 
 
 
  1. gsm call 134343434   
  2. // 便是呼叫当前模拟器命令   
  3. sms send 15555218135 Hello,this is a Message   
  4. // 是向当前的模拟器发送短信息  

2: 相关类: 

 
 
 
  1. Android.telephony.gsm.SmsManager   
  2. Android.telephony.gsm.SmsMessage   
  3. Android.app.PendingIntent   
  4. Android.widget.Toast  

3:Android短信发送实现代码(节选) 

 
 
 
  1. String msg ="hello";   
  2. string number = "1234565678";   
  3. SmsManager sms = SmsManager.getDefault();   
  4. PendingIntent pi = PendingIntent.
    getBroadcast(Sms.this,0,new Intent(),0);   
  5. sms.sendTextMessage(number,null,msg,pi,null);   
  6. Toast.makeText(Sms.this,"send success",
    Toast.LENGHT_LONG).show();  

4:Android短信发送代码解释 

上述发送短信的代码很简单,但是其中的几个类函数并不好理解: #t#

Toast.makeText 就是展示一个提示信息,这个比较容易理解;

PendingIntent 就是一个Intent 的描述,我们可以把这个描述交给别的程序,别的程序

根据这个描述在后面的别的时间做你安排做的事情,By giving a PendingIntent to another application, you are granting it the right to perform the operation you have specified as if the other 
application was yourself,就相当于你的代表了。本例中别的程序就是发送短信的程序,短信发送成功后要把intent 广播出去 。

函数sendTextMessage(String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent)

前三个参数按照文档比较容易理解,PendingIntent sentIntent 当短信发出时,成功的话sendIntent会把其内部的描述的intent广播出去,否则产生错误代码并通过Android.app.PendingIntent.OnFinished进行回调,这个参数***不为空,否则会存在资源浪费的潜在问题;

deliveryIntent 是当消息已经传递给收信人后所进行的PendingIntent 广播。

查看PendingIntent 类可以看到许多的Send函数,就是PendingIntent在进行被赋予的相关的操作。

Android短信发送的相关实现方法就为大家介绍到这里。

当前标题:Android短信发送功能实现技巧分享
当前网址:http://www.csdahua.cn/qtweb/news35/418185.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网