利用類 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;
}
}
}