Android撥打電話


每一個Android裝置特別是手機都提供一個撥打電話功能,但仍然需要編寫一個應用程式,給使用者一個選擇使用寫死的電話號碼撥打電話。

本章列出了一個簡單的步驟來建立一個應用程式,它可以用來撥打電話。使用 Android 的 Intent 通過呼叫Android內建的電話通話功能。以下部分說明 Intent 物件的撥打電話功能 。

Intent 物件 - 操作撥打電話

使用 ACTION_CALL 動作觸發Android裝置內建電話功能。以下是簡單的語法用來建立一個Intent 的 ACTION_CALL 動作

Intent phoneIntent = new Intent(Intent.ACTION_CALL);

可以使用 ACTION_DIAL 動作,而不是 ACTION_CALL,在這種情況下,在使用選項來修改寫死的電話號碼撥打電話之前,而不是直接呼叫的。

Intent 物件 - 資料/電話呼叫型別

這裡給定電話為 13800138000 撥打一個電話,需要使用setData()方法指定URI為  tel:如下:

phoneIntent.setData(Uri.parse("tel:13800138000"));

要注意的一點是,撥打電話不需要任何額外的資料或資料型別指定。

範例

下面的範例演示如何在實際使用 Android Intent 打電話給定的手機號碼。

要嘗試這個例子中,需要實際配備了最新的 Android OS 移動裝置,否則模擬器可能無法正常工作。
步驟 描述
1 使用Android Studio建立Android應用程式,並將它命名為PhoneCallDemounder。建立這個專案,確保目標 SDK編譯在 Android SDK 的最新版本或使用更高階別的API
2 修改 src/MainActivity.java 檔案,並新增所需的程式碼,以撥打電話
3 修改所需的布局XML檔案 res/layout/activity_main.xml 新增GUI元件。新增一個簡單的按鈕來撥打號碼:13800138000
4 修改  res/values/strings.xml  定義所需的常數值
5 修改 AndroidManifest.xml 如下所示
6 執行該應用程式啟動 Android模擬器並驗證應用程式所做的修改結果

以下是修改主活動檔案 src/com.yiibai.phonecalldemo/MainActivity.java 的內容如下:

package com.yiibai.phonecalldemo;

import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends Activity {

   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);

      Button startBtn = (Button) findViewById(R.id.makeCall);
      startBtn.setOnClickListener(new View.OnClickListener() {
         public void onClick(View view) {
         makeCall();
      }
   });

   }
   protected void makeCall() {
      Log.i("Make call", "");

      Intent phoneIntent = new Intent(Intent.ACTION_CALL);
      phoneIntent.setData(Uri.parse("tel:91-800-001-0101"));

      try {
         startActivity(phoneIntent);
         finish();
         Log.i("Finished making a call...", "");
      } catch (android.content.ActivityNotFoundException ex) {
         Toast.makeText(MainActivity.this, 
         "Call faild, please try again later.", Toast.LENGTH_SHORT).show();
      }
   }
   @Override
   public boolean onCreateOptionsMenu(Menu menu) {
      // Inflate the menu; this adds items to the action bar if it is present.
      getMenuInflater().inflate(R.menu.main, menu);
      return true;
   }
}

下面是 res/layout/activity_main.xml 檔案的內容:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:orientation="vertical" >

   <Button android:id="@+id/makeCall"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:text="@string/make_call"/>
    
</LinearLayout>

下面檔案 res/values/strings.xml 的內容中定義兩個新的常數:

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">PhoneCallDemo</string>
    <string name="hello_world">Hello world!</string>
    <string name="action_settings">Settings</string>
    <string name="make_call">Call 91-800-001-0101</string>

</resources>

以下是AndroidManifest.xml 檔案的預設內容:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.yiibai.phonecalldemo"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
   <uses-permission android:name="android.permission.CALL_PHONE" />
   <uses-permission android:name="android.permission.READ_PHONE_STATE" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.yiibai.phonecalldemo.MainActivity"
            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>
</manifest>

我們嘗試執行PhoneCallDemo 應用程式。Eclipse AVD安裝的應用程式,並啟動它,如果一切設定和應用程式碼都沒有問題,它會顯示以下模擬器視窗: 

Android Mobile Device

選擇移動裝置作為一個選項,然後檢查移動裝置,這將顯示以下畫面:

Android撥打電話

現在使用按鈕撥打138001380000,如下所示:

Android撥打電話

以上程式碼下載: http://pan.baidu.com/s/1hq1RSuK