You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
444 B
8 lines
444 B
package com.example.datacollect;
|
|
|
|
// 常量类:存储主题配置(只改这里的常量,整个程序的主题就变了)
|
|
public class ThemeConfig {
|
|
// 暗色主题:修改BACKGROUND_COLOR常量(这就是“修改一处常量”)
|
|
public static final String BACKGROUND_COLOR = "#1E1E1E"; // 暗色背景(原亮色是#FFFFFF)
|
|
public static final String TEXT_COLOR = "#FFFFFF"; // 文字白色(适配暗色背景)
|
|
}
|
|
|