性能等级 是 Android 12 中首次引入的标准。性能等级定义了一组超出 Android 基线要求的设备功能。
每个 Android 版本都有其对应的性能等级,该等级在该版本的Android 兼容性定义文档 (CDD) 中定义。Android 兼容性测试套件 (CTS) 验证 CDD 要求。
每个 Android 设备都会声明其支持的性能等级。开发者可以在运行时找到设备的性能等级,并提供充分利用设备功能的升级体验。
要查找设备的性能等级,请使用 Jetpack 核心性能 库。此库报告设备的媒体性能等级(如版本信息中声明)或基于 Google Play 服务的数据。
首先在您的 Gradle 文件中添加相关模块的依赖项
Kotlin
// Implementation of Jetpack Core library. implementation("androidx.core:core-ktx:1.12.0") // Enable APIs to query for device-reported performance class. implementation("androidx.core:core-performance:1.0.0") // Enable APIs to query Google Play Services for performance class. implementation("androidx.core:core-performance-play-services:1.0.0")
Groovy
// Implementation of Jetpack Core library. implementation 'androidx.core:core-ktx:1.12.0' // Enable APIs to query for device-reported performance class. implementation 'androidx.core:core-performance:1.0.0' // Enable APIs to query Google Play Services for performance class. implementation 'androidx.core:core-performance-play-services:1.0.0'
然后,创建一个DevicePerformance
实现的实例,例如PlayServicesDevicePerformance
,在应用程序的onCreate()
生命周期事件中。这应该只在你的应用中执行一次。
Kotlin
import androidx.core.performance.play.services.PlayServicesDevicePerformance class MyApplication : Application() { lateinit var devicePerformance: DevicePerformance override fun onCreate() { // Use a class derived from the DevicePerformance interface devicePerformance = PlayServicesDevicePerformance(applicationContext) } }
Java
import androidx.core.performance.play.services.PlayServicesDevicePerformance; class MyApplication extends Application { DevicePerformance devicePerformance; @Override public void onCreate() { // Use a class derived from the DevicePerformance interface devicePerformance = new PlayServicesDevicePerformance(applicationContext); } }
然后,您可以检索mediaPerformanceClass
属性,以根据设备的功能定制应用程序的体验。
Kotlin
class MyActivity : Activity() { private lateinit var devicePerformance: DevicePerformance override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) // Note: Good app architecture is to use a dependency framework. See // https://developer.android.com/training/dependency-injection for more // information. devicePerformance = (application as MyApplication).devicePerformance } override fun onResume() { super.onResume() when { devicePerformance.mediaPerformanceClass >= Build.VERSION_CODES.TIRAMISU -> { // Performance class level 13 and later. // Provide the most premium experience for the highest performing devices. } devicePerformance.mediaPerformanceClass == Build.VERSION_CODES.S -> { // Performance class level 12. // Provide a high quality experience. } else -> { // Performance class level 11 or undefined. // Remove extras to keep experience functional. } } } }
Java
class MyActivity extends Activity { private DevicePerformance devicePerformance; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Note: Good app architecture is to use a dependency framework. See // https://developer.android.com/training/dependency-injection for more // information. devicePerformance = ((MyApplication) getApplication()).devicePerformance; } @Override public void onResume() { super.onResume(); if (devicePerformance.getMediaPerformanceClass() >= Build.VERSION_CODES.TIRAMISU) { // Performance class level 13 and later. // Provide the most premium experience for the highest performing devices. } else if (devicePerformance.getMediaPerformanceClass() == Build.VERSION_CODES.S) { // Performance class level 12. // Provide a high quality experience. } else { // Performance class level 11 or undefined. // Remove extras to keep experience functional. } } }
性能等级具有前向兼容性。设备可以在不更新其性能等级的情况下升级到较新的平台版本。例如,最初支持性能等级 12 的设备可以升级到 Android 13,如果它不满足等级 13 的要求,则可以继续报告它支持等级 12。这意味着性能等级提供了一种将设备分组在一起的方法,而无需依赖于特定的 Android 版本。
性能等级 14
性能等级 14 基于性能等级 13 中引入的要求。具体的性能等级要求在Android CDD中发布。除了对性能等级 13 中项目的增强要求外,CDD 还指定了以下方面的要求:
媒体
- AV1 硬件解码器中的胶片颗粒效果支持
- AVIF 基线配置文件
- AV1 编码器性能
- HDR 视频编解码器
- RGBA_1010102 颜色格式
- YUV 纹理采样
- 视频编码质量
- 多声道音频混音
相机
- 夜间模式扩展
- 支持 HDR 的主摄像头
- 人脸检测场景模式
通用
- 硬件叠加
- HDR 显示屏
性能等级 13
性能等级 13 基于性能等级 12 中引入的要求。具体的性能等级要求在Android CDD中发布。除了对性能等级 12 中项目的增强要求外,CDD 还指定了以下方面的要求:
媒体
- AV1 硬件解码器
- 安全硬件解码器
- 解码器初始化延迟
- 往返音频延迟
- 有线耳机和 USB 音频设备
- MIDI 设备
- 硬件支持的可信执行环境
相机
- 预览稳定性
- 慢动作录制
- 超广角摄像头的最小变焦比
- 并发相机
- 逻辑多摄像头
- 流用例
性能等级 12
性能等级 12 侧重于媒体用例。具体的性能等级要求在Android CDD中发布。CDD 指定了以下方面的要求:
媒体
- 并发视频编解码器会话
- 编码器初始化延迟
- 解码器丢帧
- 编码质量
相机
- 分辨率和帧率
- 启动和捕获延迟
FULL
或更高硬件级别- 时间戳来源为实时
- RAW 功能
通用
- 内存
- 读写性能
- 屏幕分辨率
- 屏幕密度
性能等级 11
性能等级 11 包含性能等级 12 的一部分要求,允许开发者在较早但仍然功能强大的设备上提供定制的体验。具体的性能等级要求在Android CDD中发布。
推荐内容
- 注意:当 JavaScript 关闭时显示链接文本。
- 应用启动时间