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.
9 lines
314 B
9 lines
314 B
/**
|
|
* 视图层常量(配置暗色主题)
|
|
*/
|
|
public class ViewConstants {
|
|
// 暗色主题:黑色背景(仅修改此常量完成暗色主题配置)
|
|
public static final String BACKGROUND_COLOR = "BLACK";
|
|
// 文本颜色适配暗色主题
|
|
public static final String TEXT_COLOR = "WHITE";
|
|
}
|