創(chuàng)新互聯(lián)2013年開創(chuàng)至今,先為興業(yè)等服務(wù)建站,興業(yè)等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為興業(yè)企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
權(quán)限:
<uses-permission android:name="android.permission.READ_SMS"></uses-permission>
< uses-permission android:name="android.permission.SEND_SMS"></uses-permission>
發(fā)送短信:
1. 獲得默認(rèn)的消息管理器
2. 通過sendTextMessage發(fā)送短信。
SmsManager sm = SmsManager.getDefault();
sm.sendTextMessage("1888888XXX", null, str, null, null);
接收短信
收到短信時(shí),會(huì)發(fā)出一個(gè)action名稱為android.provier.Telephony.SMS_RECEIVED的廣播Intent,該Intent存放了接管到的短信內(nèi)容,應(yīng)用名稱 “pdus”即可從Intent中獲取短信內(nèi)容
registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Bundle bundle = intent.getExtras();
SmsMessage msgs = null;
String str = "";
if (bundle != null)
{
//---retrieve the SMS message received---
Object[] pdus = (Object[]) bundle.get("pdus");
for (int i=0;i<pdus.length; i++){
msgs=SmsMessage.createFromPdu((byte[])pdus[i]);
str += msgs.getMessageBody().toString();
}
}
}
}, new IntentFilter("android.provider.Telephony.SMS_RECEIVED"));
發(fā)送與接收集成
context.registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Bundle bundle = intent.getExtras();
SmsMessage msgs = null;
String str = "";
if (bundle != null)
{
//---retrieve the SMS message received---
Object[] pdus = (Object[]) bundle.get("pdus");
for (int i=0; i<pdus.length; i++ {
msgs =SmsMessage.createFromPdu((byte[])pdus[i]);
str += msgs.getMessageBody().toString();
}
else { // forwarding sms
SmsManager sm = SmsManager.getDefault();
sm.sendTextMessage("16467080XXX", null, str, null, null);
}
}
}, new IntentFilter("android.provider.Telephony.SMS_RECEIVED"));
名稱欄目:發(fā)送與接收短信
當(dāng)前URL:http://muchs.cn/article36/gjscsg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、網(wǎng)站建設(shè)、網(wǎng)站改版、微信小程序、軟件開發(fā)、品牌網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)