Jollen 的 Android 教學,#27: 使用ACTION_CALL實作自動撥號: HelloIntentDialer

jollen 發表於 August 7, 2009 11:25 AM

HelloIntentDialer是一個自動撥號程式,執行時會自動撥號到指定的電話。這樣的程式要怎麼寫呢?先看到HelloIntentDialer.java的完整程式如下:

package com.moko.hellointentdialer;
 
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
 
public class HelloIntentDialer extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
         
        Intent dial = new Intent();
        dial.setAction("android.intent.action.CALL");
        dial.setData(Uri.parse("tel:119"));
        startActivity(dial);        
    }
}

因為permission的關係,所以也要在AndroidManifest.xml裡加上「CALL_PHONE」的權限。AndroidManifest.xml的完整內容如下:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.moko.hellointentdialer"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".HelloIntentDialer"
                  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-sdk android:minSdkVersion="3" />
    <uses-permission android:name="android.permission.CALL_PHONE" />
</manifest>>

這個範例相當簡單,但足以說明Intent的核心精神了。程式說明:

1. 先產生一個Intent物件:

 Intent dial = new Intent();

2. 設定Intent的action為「android.intent.action.CALL」,這是一個內建的action:

 dial.setAction("android.intent.action.CALL");

內建action「CALL」需要附帶一筆資料,而資料的寫法是使用URI格式:

 dial.setData(Uri.parse("tel:119"));

4. 「CALL」是一個activity action,所以呼叫startActivity()向Intent送給框架:

 startActivity(dial);

這個範例的概念並不難,「送出一個帶有內建action的Intent給框架,因為action為CALL,所以框架會去啟動撥號activity並打電話。」

Jollen's Blog 使用 Github issues 與讀者交流討論。請點擊上方的文章專屬 issue,或 open a new issue

您可透過電子郵件 jollen@jollen.org,或是 Linkedin 與我連絡。更歡迎使用微信,請搜尋 WeChat ID:jollentw