android-基礎知識:smsManager.sendTextMessage() 傳送簡訊息

來源:互聯網
上載者:User

  利用類 SmsManager 發送資訊, smsManager 為 SmsManager 一個預設的執行個體. SmsManager smsManager = SmsManager.getDefault();

  smsManager.sendTextMessage(destinationAddress, scAddress, text, sentIntent, deliveryIntent)  

  destinationAddress: 收件者號碼 

  scAddress: 簡訊中心服務號碼, 這裡設定為null 

  text: 發送內容

  sentIntent: 傳送簡訊結果狀態訊號(是否成功發送),new 一個Intent , 作業系統接收到訊號後將廣播這個Intent.此過程為非同步.

  deliveryIntent: 對方接收狀態訊號(是否已成功接收).

  由於需要用到系統發送資訊功能, 要在AndroidMainfest.xml 加入 <uses-permission android: name="android.permisson.SEND_SMS" />

  

    AndroidMainfest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.PhoneSMS.melody"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="10"/>

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".PhoneSMSActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>

</application>
<uses-permission android:name="android.permission.SEND_SMS"/>
</manifest>

 

  1.介面設計 res/layout/main.xml

 

    main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- 編輯接收號碼 -->
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/textSMSTo"/>
<EditText android:layout_width="fill_parent"
android:layout_height="wrap_content" android:lines="3" android:hint="@string/edtSMSTo"
android:id="@+id/edtSMSTo"/>
<!-- 編輯發送內容 -->
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/textContent"/>
<EditText android:layout_width="fill_parent"
android:layout_height="wrap_content" android:lines="3"
android:hint="@string/edtContent" android:id="@+id/edtContent"/>
<!-- 發送 -->
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/btnSent"
android:id="@+id/btnSent"/>

</LinearLayout>

 

  2.字元變數 res/values/strings.xml

 

    strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, PhoneSMSActivity!</string>
<string name="app_name">PhoneSMS</string>
<string name="textSMSTo">收件者</string>
<string name="edtSMSTo">收件者號碼</string>
<string name="textContent">發送內容</string>
<string name="edtContent">輸入內容</string>
<string name="btnSent">發送</string>
</resources>

  3.Activity代碼編寫

  

    PhoneSMSActivity.java

package com.PhoneSMS.melody;

import java.util.List;

import android.app.Activity;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class PhoneSMSActivity extends Activity implements OnClickListener {
private EditText edtSMSTo = null; // 收件者控制項
private EditText edtContent = null; // 發送內容控制項
private Button btnSent = null; // 發送btn 控制項
private String SMSTo = null; // 收件者號碼
private String SMSContent = null; // 發送內容


/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

/**
* 擷取控制項
*/
edtSMSTo = (EditText) this.findViewById(R.id.edtSMSTo);
edtContent = (EditText) this.findViewById(R.id.edtContent);
btnSent = (Button) this.findViewById(R.id.btnSent);

// 擷取收件者號碼
SMSTo = edtSMSTo.getText().toString();
// 擷取發送內容
SMSContent = edtContent.getText().toString();
// 設定監聽事件
btnSent.setOnClickListener(this);
}

@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btnSent:
/**
* 實現簡訊發送功能
*/
// 擷取預設簡訊管理對象
SmsManager smsManager = SmsManager.getDefault();
// 判斷髮送內容字數(一件資訊最多70 字)
if(SMSContent.length() <= 70) {
smsManager.sendTextMessage(SMSTo, null, SMSContent, null, null);
}else{
// SmsManger 類中 divideMessage 會將資訊按每70 字分割
List<String> smsDivs = smsManager.divideMessage(SMSContent);
for(String sms : smsDivs) {
smsManager.sendTextMessage(SMSTo, null, sms, null, null);

}
}
Toast.makeText(PhoneSMSActivity.this, "資訊已發送", Toast.LENGTH_SHORT);
break;
}
}
}

 

  

  

  

 

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.