使用 Jetpack ActivityResult 处理 Activity 之间的数据通信
无论您是在应用中请求某项权限,从文件管理系统中选择某个文件,还是期望从第三方应用中获取到某些数据,都会涉及到在 Activity 之间传递数据,而这也正是 Android 中进程间通信的核心要点。近期我们发布了新的 ActivityResult API 来帮助简化 Activity 间的数据通信。
之前,想要从启动的 Activity 中获取到返回结果,应用需要在 Activity 和 Fragment 中实现 onActivityResult() 方法,然后检查回调关联到哪一个 requestCode,并验证该 requestCode 的结果是否为 OK,最终再去验证返回数据或扩展数据。
但是这样的处理方式会让我们的代码变得非常复杂,并且也无法保证在 Activity 发送或接收数据时参数的类型安全。
ActivityResult API 是什么
ActivityResult API 被加入到 Jetpack 的 Activity 和 Fragment 库中,旨在通过提供类型安全的 contract (协定) 来简化处理来自 Activity 的数据。这些协定为一些常见操作 (比如: 拍照或请求权限) 定义了预期的输入和输出类型,除此之外您还能够自定义协定来满足不同场景的需求。
ActivityResult API
https://developer.android.google.cn/reference/kotlin/androidx/activity/result/package-summary
Activity
https://developer.android.google.cn/jetpack/androidx/releases/activity
Fragment
https://developer.android.google.cn/jetpack/androidx/releases/fragment协定
https://developer.android.google.cn/reference/kotlin/androidx/activity/result/contract/ActivityResultContracts自定义协定
https://developer.android..google.cn/training/basics/intents/result#custom
ActivityResult API 提供了一些组件用于注册 Activity 的处理结果、发起请求以及在系统返回结果后立即进行相应处理。您也可以在启动 Activity 的地方使用一个独立的类接收返回结果,这样依然能够保证类型安全。
如何使用
repositories {
google()
maven()
}
dependencies {
// 在 https://developer.android.google.cn/jetpack/androidx/releases/activity 获得最新版本号
def activity_version = "1.2.0"
// 在 https://developer.android.google.cn/jetpack/androidx/releases/fragment 获得最新版本号
def fragment_version = "1.3.0"
implementation "androidx.activity:activity:$activity_version"
implementation "androidx.fragment:fragment:$fragment_version”
}
val getContent = registerForActivityResult(GetContent()) { uri: Uri? ->
// 处理返回的 Uri
}
回调
https://developer.android.google.cn/reference/kotlin/androidx/activity/result/ActivityResultCallbackGetContent()
https://developer.android.google.cn/reference/kotlin/androidx/activity/result/contract/ActivityResultContracts.GetContentACTION_GET_DOCUMENT
https://developer.android.google.cn/reference/android/content/Intent#ACTION_OPEN_DOCUMENT已定义协定列表
https://developer.android.google.cn/reference/kotlin/androidx/activity/result/contract/ActivityResultContracts
val getContent = registerForActivityResult(GetContent()) { uri: Uri? ->
// 处理返回的 Uri
}
override fun onCreate(savedInstanceState: Bundle?) {
// ...
val selectButton = findViewById<Button>(R.id.select_button)
selectButton.setOnClickListener {
// 传入您想让用户选择的 mime 类型作为输入
getContent.launch("image/*")
}
}
GetContent.launch()
https://developer.android.google.cn/reference/kotlin/androidx/activity/result/contract/ActivityResultContracts.GetContent
查看 Activity 库的最新版本 https://developer.android.google.cn/jetpack/androidx/releases/activity 查看 Fragment 库的最新版本 https://developer.android.google.cn/jetpack/androidx/releases/fragment
提交反馈
https://issuetracker.google.com/issues/new?component=527362&template=1189829
推荐阅读