class AppWarnings { private static final String TAG = "AppWarnings"; private static final String CONFIG_FILE_NAME = "packages-warnings.xml"; public static final int FLAG_HIDE_DISPLAY_SIZE = 0x01; public static final int FLAG_HIDE_COMPILE_SDK = 0x02; public static final int FLAG_HIDE_DEPRECATED_SDK = 0x04; private final HashMap<String, Integer> mPackageFlags = new HashMap<>(); private final ActivityTaskManagerService mAtm; private final Context mUiContext; private final ConfigHandler mHandler; private final UiHandler mUiHandler; private final AtomicFile mConfigFile; private UnsupportedDisplaySizeDialog mUnsupportedDisplaySizeDialog; private UnsupportedCompileSdkDialog mUnsupportedCompileSdkDialog; private DeprecatedTargetSdkVersionDialog mDeprecatedTargetSdkVersionDialog;
时间: 2024-04-04 22:30:49 浏览: 286
clickhouse-22.2.2.1-2.x86_64.rpm离线安装包
这段代码定义了一个 AppWarnings 类,其中包含了一些静态变量和成员变量。其中:
- TAG 是一个字符串,用于在日志中标识该类的输出。
- CONFIG_FILE_NAME 是一个字符串,表示配置文件的文件名。
- FLAG_HIDE_DISPLAY_SIZE、FLAG_HIDE_COMPILE_SDK 和 FLAG_HIDE_DEPRECATED_SDK 是三个整型常量,表示隐藏的警告类型。
- mPackageFlags 是一个 HashMap,用于存储每个应用程序的隐藏警告标志。
- mAtm 是 ActivityTaskManagerService 的一个实例。
- mUiContext 是一个 Context 实例,用于显示警告对话框。
- mHandler 是一个 ConfigHandler 实例,用于处理配置文件的读写。
- mUiHandler 是一个 UiHandler 实例,用于在 UI 线程中执行任务。
- mConfigFile 是一个 AtomicFile 实例,用于读写配置文件。
- mUnsupportedDisplaySizeDialog、mUnsupportedCompileSdkDialog 和 mDeprecatedTargetSdkVersionDialog 是三个对话框实例,用于显示警告信息。
阅读全文