IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> 2.基于Android 10分析系统设置应用主题样式 -> 正文阅读

[移动开发]2.基于Android 10分析系统设置应用主题样式

基于Android 10分析系统设置应用主题样式

相关源码文件如下:

packages/apps/Settings/
	- AndroidManifest.xml
packages/apps/Settings/res/values
    - themes.xml
    
frameworks/base/core/res/res/values
    - themes_device_defaults.xml
    - themes_material.xml
    - themes.xml
frameworks/base/core/res/res/values-night
	- themes_device_defaults.xml

设置APK资源

首先来看看设置apk的AndroidManifest.xml文件

路径:/packages/apps/Settings/AndroidManifest.xml

<application android:label="@string/settings_label"
            android:icon="@drawable/ic_launcher_settings"
            android:theme="@style/Theme.Settings"
            android:hardwareAccelerated="true"
            android:requiredForAllUsers="true"
            android:supportsRtl="true"
            android:backupAgent="com.android.settings.backup.SettingsBackupHelper"
            android:usesCleartextTraffic="true"
            android:defaultToDeviceProtectedStorage="true"
            android:directBootAware="true"
            android:appComponentFactory="androidx.core.app.CoreComponentFactory">

可以看见theme属性为:@style/Theme.Settings 定义在themes.xml文件中。

路径:/packages/apps/Settings/res/values/themes.xml

<style name="Theme.SettingsBase" parent="@android:style/Theme.DeviceDefault.Settings" />
<style name="Theme.Settings" parent="Theme.SettingsBase">
	<!-- ... -->
</style>

最后继承关系是 Theme.Settings > Theme.SettingsBase > @android:style/Theme.DeviceDefault.Settings

@android表示引用Android fraamework-res.apk系统资源,所以接下来看看framework-res内容。

系统内部资源

日间主题

路径: /frameworks/base/core/res/res/values/themes_device_defaults.xml

<!-- DeviceDefault theme for a window that should look like the Settings app.  -->
<style name="Theme.DeviceDefault.Settings" parent="Theme.DeviceDefault.Light">
   <!-- ... -->
</style>

<!-- Variant of {@link #Theme_DeviceDefault} with a light-colored style -->
<style name="Theme.DeviceDefault.Light" parent="Theme.Material.Light" >
   <!-- ... -->
</style>

路径:/frameworks/base/core/res/res/values/themes_material.xml

 <!-- Material theme (light version). -->
<style name="Theme.Material.Light" parent="Theme.Light">
    <!-- ... -->
    <!-- Window attributes -->
    <item name="windowBackground">?attr/colorBackground</item>
    <!-- ... -->
</style>

路径:/frameworks/base/core/res/res/values/themes.xml

<!-- Theme for a light background with dark text on top.  Set your activity
        to this theme if you would like such an appearance.  As with the
        default theme, you should try to assume little more than that the
        background will be a light color.
        <p>This is designed for API level 10 and lower.</p>-->
<style name="Theme.Light">
   	<!-- ... -->
    <item name="colorBackground">@color/background_light</item>
    <!-- ... -->
</style>

夜间主题

路径:/frameworks/base/core/res/res/values-night/themes_device_defaults.xml

<!-- DeviceDefault theme for a window that should look like the Settings app.  -->
<style name="Theme.DeviceDefault.Settings" parent="Theme.DeviceDefault">
 	<!-- ... -->
</style>

路径:/frameworks/base/core/res/res/values/themes_device_defaults.xml

<style name="Theme.DeviceDefault" parent="Theme.DeviceDefaultBase" />

<style name="Theme.DeviceDefaultBase" parent="Theme.Material" >
    <!-- ... -->
</style>

路径:/frameworks/base/core/res/res/values/themes_material.xml

<style name="Theme.Material">
    <!-- ... -->
    <item name="colorBackground">@color/background_material_dark</item>
    <!-- Window attributes -->
    <item name="windowBackground">?attr/colorBackground</item>
  	<!-- ... -->
</style>

总结

Light
Theme.Settings 
> Theme.SettingsBase 
> Theme.DeviceDefault.Settings
> Theme.DeviceDefault.Light
> Theme.Material.Light		
	<item name="windowBackground">?attr/colorBackground</item>   
	<item name="colorBackground">@color/background_material_light</item>
	<color name="background_material_light">@color/material_grey_50</color>
	<color name="material_grey_50">#fffafafa</color>
> Theme.Light     


Night
Theme.Settings 
> Theme.SettingsBase 
> Theme.DeviceDefault.Settings
> Theme.DeviceDefault
> Theme.DeviceDefaultBase
> Theme.Material
	<item name="windowBackground">?attr/colorBackground</item>
	<item name="colorBackground">@color/background_material_dark</item>
	<color name="background_material_dark">@color/material_grey_850</color>
	<color name="material_grey_850">#ff303030</color>

写此文章目的是为了快速定位到系统资源,方便解决App UI样式问题,为了节省读者阅读时间,删除了大部分资源的定义。

最后也建议读者通过阅读源码方式加深对此的印象。

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-09-07 10:56:29  更:2021-09-07 10:56:35 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 16:37:20-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码