1: android 的簡訊發送可以在模擬器中進行類比出來。
如現在啟動一模擬器id 號為5554,
運行cmd
telnet localhost 5554
輸入help 可以看到很多用於模擬器中的功能命令
gsm call 134343434 // 便是呼叫當前模擬器命令
sms send 15555218135 Hello,this is a Message // 是向當前的模擬器傳送簡訊息
2: 相關類:
android.telephony.gsm.SmsManager
android.telephony.gsm.SmsMessage
android.app.PendingIntent
android.widget.Toast
3:實現代碼(節選)
String msg ="hello";
string number = "1234565678";
SmsManager sms = SmsManager.getDefault();
PendingIntent pi = PendingIntent.getBroadcast(Sms.this,0,new Intent(),0);
sms.sendTextMessage(number,null,msg,pi,null);
Toast.makeText(Sms.this,"send success",Toast.LENGHT_LONG).show();
4:代碼解釋
上述傳送簡訊的代碼很簡單,但是其中的幾個類函數並不好理解:
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在進行被賦予的相關的操作。