android 的簡訊發送

來源:互聯網
上載者:User
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在進行被賦予的相關的操作。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.