在 Android 9 及更高版本中,平台可以监控应用的某些行为,这些行为会对设备的电池续航时间产生负面影响。平台使用和评估设置规则,以提供 UX 流程,让用户可以选择限制违反规则的应用。
在 Android 8.0 及更低版本中,通过“Doze”(打盹模式)、应用待机模式、后台限制和后台位置信息限制等功能进行限制。但是,某些应用仍然表现出不良行为,其中一些不良行为在Android Vitals中进行了描述。Android 9 引入了一种操作系统基础架构,可以根据可随时更新的设置规则检测和限制应用。
后台限制
用户可以限制应用,或者系统可能会建议用户限制系统检测到对设备健康状况产生负面影响的应用。
受限应用
- 仍然可以由用户启动。
- 无法在后台运行作业/闹钟或使用网络。
- 无法运行前台服务。
- 可以由用户更改为非受限应用。
设备实现者可以向应用添加更多限制,以
- 限制应用自我重启。
- 限制服务被绑定(风险极高)。
后台受限的应用在用户未主动使用这些应用时,不应消耗任何设备资源,例如内存、CPU 和电池。后台受限的应用不应在用户未主动使用这些应用时影响设备健康状况。但是,当用户启动这些应用时,这些应用应完全正常运行。
使用自定义实现
设备实现者可以继续使用其自定义方法来对应用应用限制。
集成应用限制
以下部分概述了如何在您的设备上定义和集成应用限制。如果您使用的是 Android 8.x 或更低版本中的应用限制方法,请仔细查看以下部分,了解 Android 9 及更高版本中的更改。
设置 AppOpsManager 标志
当应用受到限制时,在 AppOpsManager
中设置相应的标志。packages/apps/Settings/src/com/android/settings/fuelgauge/BatteryUtils.java
中的示例代码段
public void setForceAppStandby(int uid, String packageName, int mode) { final boolean isPreOApp = isPreOApp(packageName); if (isPreOApp) { // Control whether app could run in the background if it is pre O app mAppOpsManager.setMode(AppOpsManager.OP_RUN_IN_BACKGROUND, uid, packageName, mode); } // Control whether app could run jobs in the background mAppOpsManager.setMode(AppOpsManager.OP_RUN_ANY_IN_BACKGROUND, uid, packageName, mode); }
确保 isBackgroundRestricted 返回 true
当应用受到限制时,确保 ActivityManager.isBackgroundRestricted()
返回 true
。
记录限制原因
当应用受到限制时,记录限制原因。packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/actions/RestrictAppAction.java
中的日志记录示例代码段
mBatteryUtils.setForceAppStandby(mBatteryUtils.getPackageUid(packageName), packageName,AppOpsManager.MODE_IGNORED); if (CollectionUtils.isEmpty(appInfo.anomalyTypes)) { // Only log context if there is no anomaly type mMetricsFeatureProvider.action(mContext, MetricsProto.MetricsEvent.ACTION_TIP_RESTRICT_APP, packageName, Pair.create(MetricsProto.MetricsEvent.FIELD_CONTEXT,metricsKey)); } else { // Log ALL the anomaly types for (int type : appInfo.anomalyTypes) { mMetricsFeatureProvider.action(mContext, MetricsProto.MetricsEvent.ACTION_TIP_RESTRICT_APP, packageName, Pair.create(MetricsProto.MetricsEvent.FIELD_CONTEXT, metricsKey), Pair.create(MetricsProto.MetricsEvent.FIELD_ANOMALY_TYPE, type)); }
将 type
替换为 AnomalyType
中的值。
设备实施者可以使用 src/com/android/settings/fuelgauge/batterytip/StatsManagerConfig.java
中定义的常量
public @interface AnomalyType { // This represents an error condition in the anomaly detection. int NULL = -1; // The anomaly type does not match any other defined type. int UNKNOWN_REASON = 0; // The application held a partial (screen off) wake lock for a period of time that // exceeded the threshold with the screen off when not charging. int EXCESSIVE_WAKELOCK_ALL_SCREEN_OFF = 1; // The application exceeded the maximum number of wakeups while in the background // when not charging. int EXCESSIVE_WAKEUPS_IN_BACKGROUND = 2; // The application did unoptimized Bluetooth scans too frequently when not charging. int EXCESSIVE_UNOPTIMIZED_BLE_SCAN = 3; // The application ran in the background for a period of time that exceeded the // threshold. int EXCESSIVE_BACKGROUND_SERVICE = 4; // The application exceeded the maximum number of wifi scans when not charging. int EXCESSIVE_WIFI_SCAN = 5; // The application exceed the maximum number of flash writes int EXCESSIVE_FLASH_WRITES = 6; // The application used more than the maximum memory, while not spending any time // in the foreground. int EXCESSIVE_MEMORY_IN_BACKGROUND = 7; // The application exceeded the maximum percentage of frames with a render rate of // greater than 700ms. int EXCESSIVE_DAVEY_RATE = 8; // The application exceeded the maximum percentage of frames with a render rate // greater than 16ms. int EXCESSIVE_JANKY_FRAMES = 9; // The application exceeded the maximum cold start time - the app has not been // launched since last system start, died or was killed. int SLOW_COLD_START_TIME = 10; // The application exceeded the maximum hot start time - the app and activity are // already in memory. int SLOW_HOT_START_TIME = 11; // The application exceeded the maximum warm start time - the app was already in // memory but the activity wasn't created yet or was removed from memory. int SLOW_WARM_START_TIME = 12; // The application exceeded the maximum number of syncs while in the background. int EXCESSIVE_BACKGROUND_SYNCS = 13; // The application exceeded the maximum number of gps scans while in the background. int EXCESSIVE_GPS_SCANS_IN_BACKGROUND = 14; // The application scheduled more than the maximum number of jobs while not charging. int EXCESSIVE_JOB_SCHEDULING = 15; // The application exceeded the maximum amount of mobile network traffic while in // the background. int EXCESSIVE_MOBILE_NETWORK_IN_BACKGROUND = 16; // The application held the WiFi lock for more than the maximum amount of time while // not charging. int EXCESSIVE_WIFI_LOCK_TIME = 17; // The application scheduled a job that ran longer than the maximum amount of time. int JOB_TIMED_OUT = 18; // The application did an unoptimized Bluetooth scan that exceeded the maximum // time while in the background. int LONG_UNOPTIMIZED_BLE_SCAN = 19; // The application exceeded the maximum ANR rate while in the background. int BACKGROUND_ANR = 20; // The application exceeded the maximum crash rate while in the background. int BACKGROUND_CRASH_RATE = 21; // The application exceeded the maximum ANR-looping rate. int EXCESSIVE_ANR_LOOPING = 22; // The application exceeded the maximum ANR rate. int EXCESSIVE_ANRS = 23; // The application exceeded the maximum crash rate. int EXCESSIVE_CRASH_RATE = 24; // The application exceeded the maximum crash-looping rate. int EXCESSIVE_CRASH_LOOPING = 25; // The application crashed because no more file descriptors were available. int NUMBER_OF_OPEN_FILES = 26; }
当用户或系统移除应用的限制时,您必须记录移除限制的原因。以下代码段展示了如何从 packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/actions/UnrestrictAppAction.java
进行日志记录
public void handlePositiveAction(int metricsKey) { final AppInfo appInfo = mUnRestrictAppTip.getUnrestrictAppInfo(); // Clear force app standby, then app can run in the background mBatteryUtils.setForceAppStandby(appInfo.uid, appInfo.packageName, AppOpsManager.MODE_ALLOWED); mMetricsFeatureProvider.action(mContext, MetricsProto.MetricsEvent.ACTION_TIP_UNRESTRICT_APP, appInfo.packageName, Pair.create(MetricsProto.MetricsEvent.FIELD_CONTEXT, metricsKey)); }
测试应用限制
要测试 Android 9 及更高版本中应用限制的行为,请使用以下命令之一
- 将应用置于限制状态
appops set package-name RUN_ANY_IN_BACKGROUND ignore
- 解除应用限制并恢复默认行为
appops set package-name RUN_ANY_IN_BACKGROUND allow
- 使后台应用立即进入空闲状态
am make-uid-idle [--user user-id | all | current] package-name
- 将软件包添加到
tempwhitelist
以获得短暂的持续时间cmd deviceidle tempwhitelist [-u user] [-d duration] [package package-name]
- 从用户白名单添加/移除软件包
cmd deviceidle whitelist [+/-]package-name
- 检查
jobscheduler
和闹钟管理器的内部状态dumpsys jobscheduler
dumpsys alarm
应用待机模式
应用待机模式通过延迟用户不常使用的应用的后台网络活动和作业来延长电池续航时间。
应用待机模式生命周期
平台会检测不活跃的应用,并将其置于应用待机模式,直到用户开始积极使用该应用。
在检测阶段,当设备未充电且用户在特定的时钟时间和屏幕开启时间内没有直接或间接启动应用时,平台会检测到应用处于不活跃状态。(当一个前台应用访问第二个应用中的服务时,会发生间接启动。)
在应用待机模式期间,平台会阻止应用每天访问网络超过一次,从而延迟应用同步和其他作业。
当发生以下情况时,平台会使应用退出待机模式
- 应用变为活跃状态。
- 设备已插入电源并正在充电。
活跃应用不受应用待机模式的影响。当应用具有以下条件时,即为活跃状态
- 当前在前台运行的进程(作为 Activity 或前台服务,或者被另一个 Activity 或前台服务使用),例如通知监听器、无障碍服务、动态壁纸等。
- 用户已查看的通知,例如在锁屏或通知栏中
- 已被用户明确启动
如果以上活动在一段时间内均未发生,则应用处于不活跃状态。
测试应用待机模式
您可以使用以下 adb
命令手动测试应用待机模式
adb shell dumpsys battery unplug
adb shell am set-idle package-name true
adb shell am set-idle package-name false
adb shell am get-idle package-name