溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中如何實(shí)現(xiàn)短信發(fā)送功能

發(fā)布時間:2022-04-16 16:07:29 來源:億速云 閱讀:723 作者:iii 欄目:開發(fā)技術(shù)

這篇“Android中如何實(shí)現(xiàn)短信發(fā)送功能”文章的知識點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Android中如何實(shí)現(xiàn)短信發(fā)送功能”文章吧。

1: Android短信發(fā)送可以在模擬器中進(jìn)行模擬出來。 

如現(xiàn)在啟動一模擬器id 號為5554,運(yùn)行cmd 
telnet localhost 5554

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

gsm call 134343434   // 便是呼叫當(dāng)前模擬器命令   sms send 15555218135 Hello,this is a Message   // 是向當(dāng)前的模擬器發(fā)送短信息

2: 相關(guān)類: 

Android.telephony.gsm.SmsManager   Android.telephony.gsm.SmsMessage   Android.app.PendingIntent   Android.widget.Toast

3:Android短信發(fā)送實(shí)現(xiàn)代碼(節(jié)選) 

  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短信發(fā)送代碼解釋 

上述發(fā)送短信的代碼很簡單,但是其中的幾個類函數(shù)并不好理解: 

  • Android重力感應(yīng)實(shí)現(xiàn)方式簡介

  • Android Theme詳細(xì)內(nèi)容概述

  • Android應(yīng)用技巧總結(jié)

  • Android顯示網(wǎng)絡(luò)圖片相關(guān)實(shí)現(xiàn)方法淺談

  • Android開機(jī)自啟動具體操作方法簡介

Toast.makeText 就是展示一個提示信息,這個比較容易理解;

PendingIntent 就是一個Intent 的描述,我們可以把這個描述交給別的程序,別的程序

根據(jù)這個描述在后面的別的時間做你安排做的事情,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,就相當(dāng)于你的代表了。本例中別的程序就是發(fā)送短信的程序,短信發(fā)送成功后要把intent 廣播出去 。

函數(shù)sendTextMessage(String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent)

前三個參數(shù)按照文檔比較容易理解,PendingIntent sentIntent 當(dāng)短信發(fā)出時,成功的話sendIntent會把其內(nèi)部的描述的intent廣播出去,否則產(chǎn)生錯誤代碼并通過Android.app.PendingIntent.OnFinished進(jìn)行回調(diào),這個參數(shù)***不為空,否則會存在資源浪費(fèi)的潛在問題;

deliveryIntent 是當(dāng)消息已經(jīng)傳遞給收信人后所進(jìn)行的PendingIntent 廣播。

查看PendingIntent 類可以看到許多的Send函數(shù),就是PendingIntent在進(jìn)行被賦予的相關(guān)的操作。

以上就是關(guān)于“Android中如何實(shí)現(xiàn)短信發(fā)送功能”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI