Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第89章、系統服務之SMS服務(從零開始學Android)

第89章、系統服務之SMS服務(從零開始學Android)

編輯:Android技術基礎

每逢佳節,中國移動、電信、聯通都是偷偷笑的日子,又不知道多少短信費用納入囊中,盡管微信、QQ、飛信漫天飛,但仍然阻擋不了節日祝福短信的火爆,但群發實在沒有意義,你是不是想來一個既個性而又群發呢?

譬如:“老夫子同學,你好!特祝愚人節快樂!”,按分類從聯系人取出信息,然後加上名字和稱呼,是不是這樣的短信才更有價值與別具一格呢?

發送短信的關鍵程序是通過SmsManager對象的sendTextMessage()方法來完成,其中sendTextMessage()方法需傳入五個值,依次是收件人地址(String),發送地址(String),發送服務(PendingIntent)與送達服務(PendingIntent),其中收件人與正文是不可為null的兩個參數。

一、設計界面

1、布局文件

打開res/layout/activity_main.xml文件。
輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout   
  3.     xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent"  
  6.     android:orientation="vertical" >  
  7.   
  8.     <TextView  
  9.         android:id="@+id/textphone"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content"  
  12.         android:text="手機號碼:" />  
  13.   
  14.     <EditText  
  15.         android:id="@+id/editphone"  
  16.         android:layout_width="match_parent"  
  17.         android:layout_height="wrap_content"  
  18.         android:ems="10" >  
  19.   
  20.         <requestFocus />  
  21.     </EditText>  
  22.   
  23.     <TextView  
  24.         android:id="@+id/textcont"  
  25.         android:layout_width="wrap_content"  
  26.         android:layout_height="wrap_content"  
  27.         android:text="短信內容:" />  
  28.   
  29.     <EditText  
  30.         android:id="@+id/editcont"  
  31.         android:layout_width="match_parent"  
  32.         android:layout_height="wrap_content"  
  33.         android:ems="10" />  
  34.   
  35.     <Button  
  36.         android:id="@+id/send"  
  37.         android:layout_width="wrap_content"  
  38.         android:layout_height="wrap_content"  
  39.         android:text="發送" />  
  40.   
  41. </LinearLayout>  

 

二、程序文件

打開“src/com.genwoxue.sms/MainActivity.java”文件。
然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.sms;  
  2.   
  3. import android.os.Bundle;  
  4. import android.telephony.SmsManager;  
  5. import android.view.View;  
  6. import android.view.View.OnClickListener;  
  7. import android.widget.Button;  
  8. import android.widget.EditText;  
  9. import android.app.Activity;  
  10. import android.app.PendingIntent;  
  11.   
  12. public class MainActivity extends Activity {  
  13.   
  14.     private EditText editPhone=null;  
  15.     private EditText editCont=null;  
  16.     private Button btnSend=null;  
  17.       
  18.     @Override  
  19.     protected void onCreate(Bundle savedInstanceState) {  
  20.         super.onCreate(savedInstanceState);  
  21.         setContentView(R.layout.activity_main);  
  22.           
  23.         editPhone=(EditText)super.findViewById(R.id.editphone);  
  24.         editCont=(EditText)super.findViewById(R.id.editcont);  
  25.           
  26.         btnSend=(Button)super.findViewById(R.id.send);  
  27.         btnSend.setOnClickListener(new OnClickListener(){  
  28.             @Override  
  29.             public void onClick(View v){  
  30.                 //實例化PendingIntent  
  31.                 PendingIntent intent=PendingIntent.getActivity(  
  32.                         MainActivity.this,   
  33.                         0,  
  34.                         MainActivity.this.getIntent(),  
  35.                         PendingIntent.FLAG_UPDATE_CURRENT);  
  36.                   
  37.                 //獲取SmsManager服務  
  38.                 SmsManager sms=SmsManager.getDefault();  
  39.                 //發送短信  
  40.                 sms.sendTextMessage(  
  41.                         editPhone.getText().toString(),  //手機號碼  
  42.                         "13800371500",                   //短信中心號碼  
  43.                         editCont.getText().toString(),   //內容  
  44.                         intent,  
  45.                         null);  
  46.             }  
  47.         });  
  48.     }  
  49. }  

 

三、配置文件

打開“AndroidManifest.xml”文件。

然後輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     package="com.genwoxue.sms"  
  4.     android:versionCode="1"  
  5.     android:versionName="1.0" >  
  6.   
  7.     <uses-sdk  
  8.         android:minSdkVersion="10"  
  9.         android:targetSdkVersion="15" />  
  10.       
  11.     <uses-permission android:name="android.permission.SEND_SMS"/>  
  12.   
  13.     <application  
  14.         android:allowBackup="true"  
  15.         android:icon="@drawable/ic_launcher"  
  16.         android:label="@string/app_name"  
  17.         android:theme="@style/AppTheme" >  
  18.         <activity  
  19.             android:name="com.genwoxue.sms.MainActivity"  
  20.             android:label="@string/app_name" >  
  21.             <intent-filter>  
  22.                 <action android:name="android.intent.action.MAIN" />  
  23.                 <category android:name="android.intent.category.LAUNCHER" />  
  24.             </intent-filter>  
  25.         </activity>  
  26.     </application>  
  27.   
  28. </manifest>  

 

注意:需要在AndroidManifest.xml文件中添加權限:

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

四、運行結果

\

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved