Android(安卓)拨打电话
Android 为电话提供内置应用程序,在某些情况下,我们可能需要通过应用程序拨打电话。这可以通过使用带有适当动作的隐式 Intent(意图)轻松实现。此外,我们还可以使用 PhoneStateListener
和 TelephonyManager
类来监视设备上某些电话状态的变化。
本章列出了创建可用于拨打电话的应用程序的所有简单步骤。您可以使用 Android Intent 通过调用 Android 的内置电话呼叫功能进行电话呼叫。下面的部分解释了进行调用所需的 Intent 对象的不同部分。
Intent 对象 - 拨打电话的行为
您可用使用 ACTION_CALL
操作来触发 Android 设备中可用的内置电话功能。以下是使用 ACTION_CALL
操作创建意图的简单语法:
Intent phoneIntent = new Intent(Intent.ACTION_CALL);
您可以使用 ACTION_DIAL
操作而不是 ACTION_CALL,在这种情况下,您可以选择在拨打电话之前修改硬编码的电话号码,而不是直接拨打电话。
Intent 对象 - 打电话的数据/类型
要拨打给定号码 91-000-000-0000 的电话,需要使用 setData()
方法将 tel:
指定为 URI,如下所示:
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:
package com.example.saira_000.myapplication;
import android.Manifest;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.ActivityCompat;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
private Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
button = (Button) findViewById(R.id.buttonCall);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:0377778888"));
if (ActivityCompat.checkSelfPermission(MainActivity.this,
Manifest.permission.CALL_PHONE) != PackageManager.PERMISSION_GRANTED) {
return;
}
startActivity(callIntent);
}
});
}
}
下面是 res/layout/activity_main.xml 文件的内容:
<?xml version="1.0" encoding="utf-8"?>
<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/buttonCall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="call 0377778888" />
</LinearLayout>
下面是 res/values/strings.xml 文件,定义了常量:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">My Application</string>
</resources>
下面是 AndroidManifest.xml 的默认内容:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.saira_000.myapplication" >
<uses-permission android:name="android.permission.CALL_PHONE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.saira_000.myapplication.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>
让我们尝试运行 My Application 应用程序。假设您已经将实际的 Android 移动设备与计算机连接。要从 Android Studio 运行应用程序,请打开项目的 activity 文件之一,然后单击工具栏上的运行 Eclipse 图标。在启动应用程序之前,Android studio 安装程序将显示以下窗口,以选择要运行 Android 应用程序的选项。选择您的移动设备作为选项,然后检查将显示以下屏幕的移动设备:
现在使用 Call 按钮拨打电话,如下所示: