android 发送短信的两种方式

2014-08-27 10:16
android中可以通过两种方式发送短信

第一:调用系统短信接口直接发送短信;主要代码如下:
Java代码  收藏代码
  1. /** 
  2.      * 直接调用短信接口发短信 
  3.      * @param phoneNumber 
  4.      * @param message 
  5.      */  
  6. public void sendSMS(String phoneNumber,String message){  
  7.         //获取短信管理器   
  8.         android.telephony.SmsManager smsManager = android.telephony.SmsManager.getDefault();  
  9.         //拆分短信内容(手机短信长度限制)    
  10.         List<String> divideContents = smsManager.divideMessage(message);   
  11.         for (String text : divideContents) {    
  12.             smsManager.sendTextMessage(phoneNumber, null, text, sentPI, deliverPI);    
  13.         }  
  14.     }  


第二:调起系统发短信功能;主要代码如下:
Java代码  收藏代码
  1. /** 
  2.      * 调起系统发短信功能 
  3.      * @param phoneNumber 
  4.      * @param message 
  5.      */  
  6.     public void doSendSMSTo(String phoneNumber,String message){  
  7.         if(PhoneNumberUtils.isGlobalPhoneNumber(phoneNumber)){  
  8.             Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.parse("smsto:"+phoneNumber));            
  9.             intent.putExtra("sms_body", message);            
  10.             startActivity(intent);  
  11.         }  
  12.     }  


别忘了权限:
<uses-permission android:name="android.permission.SEND_SMS" />

这里主要讲解第一种方法,第一种方法可以监控发送状态和对方接收状态。

处理返回的发送状态:
Java代码  收藏代码
  1. //处理返回的发送状态   
  2. String SENT_SMS_ACTION = "SENT_SMS_ACTION";  
  3. Intent sentIntent = new Intent(SENT_SMS_ACTION);  
  4. PendingIntent sentPI = PendingIntent.getBroadcast(context, 0, sentIntent,  
  5.         0);  
  6. // register the Broadcast Receivers  
  7. context.registerReceiver(new BroadcastReceiver() {  
  8.     @Override  
  9.     public void onReceive(Context _context, Intent _intent) {  
  10.         switch (getResultCode()) {  
  11.         case Activity.RESULT_OK:  
  12.             Toast.makeText(context,  
  13.         "短信发送成功", Toast.LENGTH_SHORT)  
  14.         .show();  
  15.         break;  
  16.         case SmsManager.RESULT_ERROR_GENERIC_FAILURE:  
  17.         break;  
  18.         case SmsManager.RESULT_ERROR_RADIO_OFF:  
  19.         break;  
  20.         case SmsManager.RESULT_ERROR_NULL_PDU:  
  21.         break;  
  22.         }  
  23.     }  
  24. }, new IntentFilter(SENT_SMS_ACTION));  


处理返回的接收状态 :
Java代码  收藏代码
  1. //处理返回的接收状态   
  2. String DELIVERED_SMS_ACTION = "DELIVERED_SMS_ACTION";  
  3. // create the deilverIntent parameter  
  4. Intent deliverIntent = new Intent(DELIVERED_SMS_ACTION);  
  5. PendingIntent deliverPI = PendingIntent.getBroadcast(context, 0,  
  6.        deliverIntent, 0);  
  7. context.registerReceiver(new BroadcastReceiver() {  
  8.    @Override  
  9.    public void onReceive(Context _context, Intent _intent) {  
  10.        Toast.makeText(context,  
  11.   "收信人已经成功接收", Toast.LENGTH_SHORT)  
  12.   .show();  
  13.    }  
  14. }, new IntentFilter(DELIVERED_SMS_ACTION));  


发送短信的参数说明:
Java代码  收藏代码
  1. smsManager.sendTextMessage(destinationAddress, scAddress, text, sentIntent, deliveryIntent)  

-- destinationAddress:目标电话号码
-- scAddress:短信中心号码,测试可以不填
-- text: 短信内容
-- sentIntent:发送 -->中国移动 --> 中国移动发送失败 --> 返回发送成功或失败信号 --> 后续处理   即,这个意图包装了短信发送状态的信息
-- deliveryIntent: 发送 -->中国移动 --> 中国移动发送成功 --> 返回对方是否收到这个信息 --> 后续处理  即:这个意图包装了短信是否被对方收到的状态信息(供应商已经发送成功,但是对方没有收到)。
^