SMS---android 发送短信 详解

关于 PendingIntent 和 Notification 以及 sendTextMessage 


Android的状态栏通知(Notification)

如果需要查看消息,可以拖动状态栏到屏幕下方即可查看消息。

步骤:

获取通知管理器NotificationManager,它也是一个系统服务

建立通知Notification notification = new Notification(icon, null, when);

为新通知设置参数(比如声音,震动,灯光闪烁)

把新通知添加到通知管理器

发送消息的代码如下:

//获取通知管理器

NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE)

int icon = android.R.drawable.stat_notify_chat;

long when = System.currentTimeMillis();//知发生的时间为系统当前时间

//新建一个通知,指定其图标和标题

Notification notification = new Notification(icon, null, when);//第一个参数为图标,第二个参数为短暂提示标题,第三个为通知时间

notification.defaults = Notification.DEFAULT_SOUND;//发出默认声音

notification.flags |= Notification.FLAG_AUTO_CANCEL;//击通知后自动清除通知

Intent openintent = new Intent(this, OtherActivity.class);

PendingIntent contentIntent = PendingIntent.getActivity(this, 0, openintent, 0);//当点击消息时就会向系统发送openintent意图

notification.setLatestEventInfo(this, “标题”, “我是内容", contentIntent);

mNotificationManager.notify(0, notification);//第一个参数为自定义的通知唯一标

 

 

重点是setLatestEventInfo( )方法的最后一个参数!!!!它是一个PendingIntent!!!!!!!!!

这里使用到了PendingIntent(pend本意是待定,不确定的意思)

PendingIntent可以看作是对Intent的包装。PendingIntent主要持有的信息是它所包装的Intent和当前ApplicationContext。正由于PendingIntent中保存有当前ApplicationContext,使它赋予带他程序一种执行的Intent的能力,就算在执行时当前Application已经不存在了,也能通过存在PendingIntent里的Context照样执行Intent

 

PendingIntent的一个很好的例子:

SmsManager的用于发送短信的方法:

sendTextMessage(destinationAddress, scAddress, text, sentIntent, deliveryIntent);

第一个参数:destinationAddress 对方手机号码

第二个参数:scAddress 短信中心号码 一般设置为空

第三个参数:text 短信内容

第四个参数:sentIntent判断短信是否发送成功,如果你没有SIM卡,或者网络中断,则可以通过这个itent来判断。注意强调的是“发送”的动作是否成功。那么至于对于对方是否收到,另当别论

第五个参数:deliveryIntent当短信发送到收件人时,会收到这个deliveryIntent。即强调了“发送”后的结果

就是说是在"短信发送成功""对方收到此短信"才会激活 sentIntentdeliveryIntent这两个Intent。这也相当于是延迟执行了Intent


 

android拨打电话,其实实现非常简洁,看如下代码

       //构建一个新的Intent,调用action.DAIL,与电话号码作为参数一起传入
        Intent intent=new Intent("android.intent.action.DAIL", Uri.parse("tel:"+unm));
        startActivity(intent);
        只要new一个Intent对象,参数是拨打电话的Action 和经过验证的手机号码,然后startActivity这个Intent就可以转入拨打电话界面

android发送短信的代码:

      //建立一个发送短信的对象
        SmsManager sms = SmsManager.getDefault();

       PendingIntent mPI = PendingIntent.getBroadcast(Demo05_03.this, 0, new Intent(), 0);  //建立一个pend对象

       sms.sendTextMessage(smsNum, null, smsContent,mPI, null);  //发送短信

    如果短信内容太长自需要进行拆分:

      ArrayList array=sms.divideMessage(smsContent);
            for (int i=0;i<array.size();i++)
            {
               sms.sendTextMessage(smsNum, null, array.get(i).toString(), mPI, null);
               
            }

  

像这种拨打电话和发送短信如果没有实机可以通过在创建一个模拟器实现模拟通信,把另一个模拟器的端口当做手机号码就可以了.

进入cmd,然后cd到SDk tool目录下,执行emulator -data foo,就可以启动另个模拟器了,进行通信测试。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值