Android(安卓)拨打电话

Android 为电话提供内置应用程序,在某些情况下,我们可能需要通过应用程序拨打电话。这可以通过使用带有适当动作的隐式 Intent(意图)轻松实现。此外,我们还可以使用 PhoneStateListenerTelephonyManager 类来监视设备上某些电话状态的变化。

本章列出了创建可用于拨打电话的应用程序的所有简单步骤。您可以使用 Android Intent 通过调用 Android 的内置电话呼叫功能进行电话呼叫。下面的部分解释了进行调用所需的 Intent 对象的不同部分。


Intent 对象 - 拨打电话的行为

您可用使用 ACTION_CALL 操作来触发 Android 设备中可用的内置电话功能。以下是使用 ACTION_CALL 操作创建意图的简单语法:

  1. Intent phoneIntent = new Intent(Intent.ACTION_CALL);

您可以使用 ACTION_DIAL 操作而不是 ACTION_CALL,在这种情况下,您可以选择在拨打电话之前修改硬编码的电话号码,而不是直接拨打电话。


Intent 对象 - 打电话的数据/类型

要拨打给定号码 91-000-000-0000 的电话,需要使用 setData() 方法将 tel: 指定为 URI,如下所示:

  1. phoneIntent.setData(Uri.parse("tel:91-000-000-0000"));

有趣的是,要打电话,您不需要指定任何额外的数据或数据类型。


实例

下面的实例向您实际演示了如何使用 Android Intent 拨打给定手机号码的电话。

为了实验这个例子,您需要实际的移动设备配备最新的 Android 操作系统,否则您如果使用模拟器有可能出问题。

步骤描述
1您将使用 Android studio IDE 创建一个 Android 应用程序,并将其命名为 com.example.saira_000.myapplication 包下的 My Application
2修改 src/MainActivity.java 文件并添加所需的代码以拨打电话。
3修改布局文件 res/layout/activity_main.xml 添加必要的 GUI 组件。我们添加了一个简单的按钮来拨打 91-000-000-0000 这个号码。
4无需定义默认字符串常量。Android Studio 处理默认常量。
5修改 AndroidManifest.xml 文件。
6运行应用程序以启动 Android 模拟器并验证应用程序中所做更改的结果。

以下是修改后的主活动文件的内容 src/MainActivity.java

  1. package com.example.saira_000.myapplication;
  2. import android.Manifest;
  3. import android.content.Intent;
  4. import android.content.pm.PackageManager;
  5. import android.net.Uri;
  6. import android.os.Bundle;
  7. import android.support.v4.app.ActivityCompat;
  8. import android.support.v7.app.AppCompatActivity;
  9. import android.view.View;
  10. import android.widget.Button;
  11. public class MainActivity extends AppCompatActivity {
  12. private Button button;
  13. @Override
  14. protected void onCreate(Bundle savedInstanceState) {
  15. super.onCreate(savedInstanceState);
  16. setContentView(R.layout.activity_main);
  17. button = (Button) findViewById(R.id.buttonCall);
  18. button.setOnClickListener(new View.OnClickListener() {
  19. public void onClick(View arg0) {
  20. Intent callIntent = new Intent(Intent.ACTION_CALL);
  21. callIntent.setData(Uri.parse("tel:0377778888"));
  22. if (ActivityCompat.checkSelfPermission(MainActivity.this,
  23. Manifest.permission.CALL_PHONE) != PackageManager.PERMISSION_GRANTED) {
  24. return;
  25. }
  26. startActivity(callIntent);
  27. }
  28. });
  29. }
  30. }

下面是 res/layout/activity_main.xml 文件的内容:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical" >
  6. <Button
  7. android:id="@+id/buttonCall"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:text="call 0377778888" />
  11. </LinearLayout>

下面是 res/values/strings.xml 文件,定义了常量:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <string name="app_name">My Application</string>
  4. </resources>

下面是 AndroidManifest.xml 的默认内容:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.saira_000.myapplication" >
  4. <uses-permission android:name="android.permission.CALL_PHONE" />
  5. <application
  6. android:allowBackup="true"
  7. android:icon="@drawable/ic_launcher"
  8. android:label="@string/app_name"
  9. android:theme="@style/AppTheme" >
  10. <activity
  11. android:name="com.example.saira_000.myapplication.MainActivity"
  12. android:label="@string/app_name" >
  13. <intent-filter>
  14. <action android:name="android.intent.action.MAIN" />
  15. <category android:name="android.intent.category.LAUNCHER" />
  16. </intent-filter>
  17. </activity>
  18. </application>
  19. </manifest>

让我们尝试运行 My Application 应用程序。假设您已经将实际的 Android 移动设备与计算机连接。要从 Android Studio 运行应用程序,请打开项目的 activity 文件之一,然后单击工具栏上的运行 Eclipse Eclipse Run Icon 图标。在启动应用程序之前,Android studio 安装程序将显示以下窗口,以选择要运行 Android 应用程序的选项。选择您的移动设备作为选项,然后检查将显示以下屏幕的移动设备:

现在使用 Call 按钮拨打电话,如下所示: