将用户发送到另一个应用

Android 最重要的功能之一是应用能够根据其想要执行的“操作”将用户发送到另一个应用。例如,如果您的应用具有您想在地图上显示的企业的地址,则无需在您的应用中构建显示地图的活动。相反,您可以使用 Intent 创建查看地址的请求。然后,Android 系统启动能够在地图上显示地址的应用。

如第一课 构建您的第一个应用 中所述,您必须使用意图在您自己的应用中的活动之间导航。您通常使用显式意图来执行此操作,显式意图定义了要启动的组件的确切类名。但是,当您希望另一个应用执行某个操作(例如“查看地图”)时,必须使用隐式意图

本课程向您展示如何为特定操作创建隐式意图,以及如何使用它来启动在另一个应用中执行该操作的活动。另请参阅此处嵌入的视频,以了解为什么必须为隐式意图包含运行时检查非常重要。

构建隐式意图

隐式意图不声明要启动的组件的类名,而是声明要执行的操作。操作指定您想要执行的操作,例如查看编辑发送获取某些内容。

将意图操作与数据关联

意图通常还包含与操作关联的数据,例如您想要查看的地址或您想要发送的电子邮件消息。根据您想要创建的意图,数据可能是 Uri、其他几种数据类型之一,或者意图可能根本不需要数据。

如果您的数据是 Uri,则可以使用一个简单的 Intent() 构造函数来定义操作和数据。

例如,以下是如何创建意图以使用 Uri 数据指定电话号码来发起电话呼叫的示例

Kotlin

val callIntent: Intent = Uri.parse("tel:5551234").let { number ->
    Intent(Intent.ACTION_DIAL, number)
}

Java

Uri number = Uri.parse("tel:5551234");
Intent callIntent = new Intent(Intent.ACTION_DIAL, number);

当您的应用通过调用 startActivity() 调用此意图时,电话应用会向指定的电话号码发起呼叫。

以下是一些其他意图及其操作和 Uri 数据对

查看地图

Kotlin

// Map point based on address
val mapIntent: Intent = Uri.parse(
        "geo:0,0?q=1600+Amphitheatre+Parkway,+Mountain+View,+California"
).let { location ->
    // Or map point based on latitude/longitude
    // val location: Uri = Uri.parse("geo:37.422219,-122.08364?z=14") // z param is zoom level
    Intent(Intent.ACTION_VIEW, location)
}

Java

// Map point based on address
Uri location = Uri.parse("geo:0,0?q=1600+Amphitheatre+Parkway,+Mountain+View,+California");
// Or map point based on latitude/longitude
// Uri location = Uri.parse("geo:37.422219,-122.08364?z=14"); // z param is zoom level
Intent mapIntent = new Intent(Intent.ACTION_VIEW, location);

查看网页

Kotlin

val webIntent: Intent = Uri.parse("https://www.android.com").let { webpage ->
    Intent(Intent.ACTION_VIEW, webpage)
}

Java

Uri webpage = Uri.parse("https://www.android.com");
Intent webIntent = new Intent(Intent.ACTION_VIEW, webpage);

向意图添加额外数据

其他类型的隐式意图需要“额外”数据来提供不同的数据类型,例如字符串。您可以使用各种 putExtra() 方法添加一个或多个额外数据。

默认情况下,系统会根据包含的 Uri 数据确定意图所需的 MIME 类型。如果意图中不包含 Uri,则通常应使用 setType() 指定与意图关联的数据类型。设置 MIME 类型进一步指定哪些类型的活动应接收意图。

以下是一些添加额外数据以指定所需操作的意图

发送带有附件的电子邮件

Kotlin

Intent(Intent.ACTION_SEND).apply {
    // The intent does not have a URI, so declare the "text/plain" MIME type
    type = "text/plain"
    putExtra(Intent.EXTRA_EMAIL, arrayOf("[email protected]")) // recipients
    putExtra(Intent.EXTRA_SUBJECT, "Email subject")
    putExtra(Intent.EXTRA_TEXT, "Email message text")
    putExtra(Intent.EXTRA_STREAM, Uri.parse("content://path/to/email/attachment"))
    // You can also attach multiple items by passing an ArrayList of Uris
}

Java

Intent emailIntent = new Intent(Intent.ACTION_SEND);
// The intent does not have a URI, so declare the "text/plain" MIME type
emailIntent.setType(HTTP.PLAIN_TEXT_TYPE);
emailIntent.putExtra(Intent.EXTRA_EMAIL, new String[] {"[email protected]"}); // recipients
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Email subject");
emailIntent.putExtra(Intent.EXTRA_TEXT, "Email message text");
emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("content://path/to/email/attachment"));
// You can also attach multiple items by passing an ArrayList of Uris

创建日历事件

注意:此日历事件意图仅在 API 级别 14 及更高版本中受支持。

Kotlin

// Event is on January 23, 2021 -- from 7:30 AM to 10:30 AM.
Intent(Intent.ACTION_INSERT, Events.CONTENT_URI).apply {
    val beginTime: Calendar = Calendar.getInstance().apply {
        set(2021, 0, 23, 7, 30)
    }
    val endTime = Calendar.getInstance().apply {
        set(2021, 0, 23, 10, 30)
    }
    putExtra(CalendarContract.EXTRA_EVENT_BEGIN_TIME, beginTime.timeInMillis)
    putExtra(CalendarContract.EXTRA_EVENT_END_TIME, endTime.timeInMillis)
    putExtra(Events.TITLE, "Ninja class")
    putExtra(Events.EVENT_LOCATION, "Secret dojo")
}

Java

// Event is on January 23, 2021 -- from 7:30 AM to 10:30 AM.
Intent calendarIntent = new Intent(Intent.ACTION_INSERT, Events.CONTENT_URI);
Calendar beginTime = Calendar.getInstance();
beginTime.set(2021, 0, 23, 7, 30);
Calendar endTime = Calendar.getInstance();
endTime.set(2021, 0, 23, 10, 30);
calendarIntent.putExtra(CalendarContract.EXTRA_EVENT_BEGIN_TIME, beginTime.getTimeInMillis());
calendarIntent.putExtra(CalendarContract.EXTRA_EVENT_END_TIME, endTime.getTimeInMillis());
calendarIntent.putExtra(Events.TITLE, "Ninja class");
calendarIntent.putExtra(Events.EVENT_LOCATION, "Secret dojo");

注意:务必将您的 Intent 定义得尽可能具体。例如,如果要使用 ACTION_VIEW 意图显示图像,则应指定 image/* 的 MIME 类型。这可以防止可以“查看”其他类型数据(如地图应用)的应用由意图触发。

使用意图启动活动

创建 Intent 并设置额外信息后,请调用 startActivity() 将其发送到系统

Kotlin

startActivity(intent)

Java

startActivity(intent);

处理没有应用可以接收意图的情况

尽管许多意图可以由设备上安装的其他应用(例如电话、电子邮件或日历应用)成功处理,但您的应用应该为无法处理您的应用意图的情况做好准备。无论何时调用意图,都要准备好捕获ActivityNotFoundException,如果没有任何其他活动可以处理您的应用意图,则会发生此异常。

Kotlin

try {
    startActivity(intent)
} catch (e: ActivityNotFoundException) {
    // Define what your app should do if no activity can handle the intent.
}

Java

try {
    startActivity(intent);
} catch (ActivityNotFoundException e) {
    // Define what your app should do if no activity can handle the intent.
}

捕获此异常后,请决定您的应用接下来应该执行什么操作。下一步取决于您尝试调用的意图的具体特征。例如,如果您知道某个特定应用可以处理该意图,请提供一个链接供用户下载该应用。了解有关如何链接到您在 Google Play 上的产品的更多信息。

歧义对话框

如果系统识别到多个可以处理该意图的活动,则会显示一个对话框(有时称为“歧义对话框”),供用户选择要使用哪个应用,如图 1 所示。如果只有一个活动可以处理该意图,则系统会立即启动它。

A panel appears
  near the bottom of the screen. This panel lists the different apps that could
  handle the intent.

图 1. 当多个应用可以处理意图时显示的选择对话框示例。

完整示例

以下是一个完整的示例,展示了如何创建查看地图的意图、验证是否存在可以处理该意图的应用,然后启动该应用。

Kotlin

// Build the intent.
val location = Uri.parse("geo:0,0?q=1600+Amphitheatre+Parkway,+Mountain+View,+California")
val mapIntent = Intent(Intent.ACTION_VIEW, location)

// Try to invoke the intent.
try {
    startActivity(mapIntent)
} catch (e: ActivityNotFoundException) {
    // Define what your app should do if no activity can handle the intent.
}

Java

// Build the intent.
Uri location = Uri.parse("geo:0,0?q=1600+Amphitheatre+Parkway,+Mountain+View,+California");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, location);

// Try to invoke the intent.
try {
    startActivity(mapIntent);
} catch (ActivityNotFoundException e) {
    // Define what your app should do if no activity can handle the intent.
}

显示应用选择器

图 2. 选择器对话框。

请注意,当您通过将Intent传递给startActivity()来启动活动,并且有多个应用响应该意图时,用户可以通过选择对话框底部的复选框选择默认使用的应用(参见图 1)。当执行用户通常希望每次都使用同一个应用的操作时,这很有用,例如打开网页(用户可能只使用一个网页浏览器)或拍照(用户可能更喜欢一个相机)。

但是,如果要执行的操作可以由多个应用处理,并且用户每次可能更喜欢不同的应用(例如“共享”操作,用户可能有多个应用可以通过这些应用共享项目),则应显式显示一个选择器对话框,如图 2 所示。选择器对话框会强制用户每次都选择要用于该操作的应用(用户无法为该操作选择默认应用)。

要显示选择器,请使用createChooser()创建Intent,并将其传递给startActivity()。例如

Kotlin

val intent = Intent(Intent.ACTION_SEND)

// Create intent to show chooser
val chooser = Intent.createChooser(intent, /* title */ null)

// Try to invoke the intent.
try {
    startActivity(chooser)
} catch (e: ActivityNotFoundException) {
    // Define what your app should do if no activity can handle the intent.
}

Java

Intent intent = new Intent(Intent.ACTION_SEND);

// Create intent to show chooser
Intent chooser = Intent.createChooser(intent, /* title */ null);

// Try to invoke the intent.
try {
    startActivity(chooser);
} catch (ActivityNotFoundException e) {
    // Define what your app should do if no activity can handle the intent.
}

这将显示一个对话框,其中包含响应传递给 createChooser()方法的意图的应用列表。title参数可以在操作不是 ACTION_SEND ACTION_SEND_MULTIPLE时提供。