1. 重命名调试主题属性 - themeGlobalCrashActivity → themeDebug - GlobalCrashActivityTheme → DebugActivityTheme 2. 新增 debugTextColor 属性 - 定义 debugTextColor 属性,用于统一应用调试文字颜色 - 普通模式: 灰色 #808080 - 深色模式: 绿色 #FF00FF00 3. 重构视图控件 - view_globalcrashreport.xml 和 view_log.xml 使用 themeDebug 主题 - 控件颜色统一引用主题属性 - 日志显示文本使用 debugTextColor 属性 4. GlobalCrashReportView Java 代码 - 新增 obtainDebugTextColor() 方法获取主题中的 debugTextColor - 崩溃视图文字颜色通过主题属性获取,与日志视图一致
61 lines
2.3 KiB
XML
61 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
|
|
<!-- 全局主题属性 -->
|
|
<attr name="themeDebug" format="reference"/>
|
|
|
|
<!-- GlobalCrashActivity 样式属性 -->
|
|
<declare-styleable name="GlobalCrashActivity">
|
|
<attr name="colorTittle" format="color" />
|
|
<attr name="colorTittleBackgound" format="color" />
|
|
<attr name="colorText" format="color" />
|
|
<attr name="colorTextBackgound" format="color" />
|
|
</declare-styleable>
|
|
|
|
<!-- AboutView 样式属性 -->
|
|
<declare-styleable name="AboutViewStyle">
|
|
<attr name="aboutViewBackgroundColor" format="color" />
|
|
<attr name="aboutViewTextColor" format="color" />
|
|
<attr name="aboutViewTitleColor" format="color" />
|
|
<attr name="aboutViewDividerColor" format="color" />
|
|
</declare-styleable>
|
|
|
|
<!-- ButtonStyle 样式属性 -->
|
|
<declare-styleable name="ButtonStyle">
|
|
<attr name="buttonBackgroundColor" format="color" />
|
|
<attr name="buttonTextColor" format="color" />
|
|
</declare-styleable>
|
|
|
|
<!-- DialogStyle 样式属性 -->
|
|
<declare-styleable name="DialogStyle">
|
|
<attr name="dialogBackgroundColor" format="color" />
|
|
<attr name="dialogTextColor" format="color" />
|
|
</declare-styleable>
|
|
|
|
<!-- 窗体/控件通用背景色属性 -->
|
|
<attr name="toolbarBackgroundColor" format="color"/>
|
|
<attr name="textViewBackgroundColor" format="color"/>
|
|
<attr name="editTextBackgroundColor" format="color"/>
|
|
<attr name="scrollViewBackgroundColor" format="color"/>
|
|
|
|
<!-- 窗体/控件通用文字色属性 -->
|
|
<attr name="toolbarTextColor" format="color"/>
|
|
<attr name="textViewTextColor" format="color"/>
|
|
<attr name="editTextTextColor" format="color"/>
|
|
|
|
<!-- ActivityStyle 样式属性 -->
|
|
<attr name="activityBackgroundColor" format="color"/>
|
|
<attr name="activityTextColor" format="color"/>
|
|
|
|
<!-- MainWindowStyle 主窗口样式属性 -->
|
|
<attr name="mainWindowBackgroundColor" format="color"/>
|
|
<attr name="mainWindowTextColor" format="color"/>
|
|
|
|
<!-- MainWindowDarkStyle 深色模式主窗口样式属性 -->
|
|
<attr name="mainWindowDarkBackgroundColor" format="color"/>
|
|
<attr name="mainWindowDarkTextColor" format="color"/>
|
|
|
|
<!-- DebugLogStyle 应用调试日志样式属性 -->
|
|
<attr name="debugTextColor" format="color"/>
|
|
|
|
</resources> |