Files
WinBoLL/libappbase/src/main/res/drawable/btn_gray_bg.xml
BigPickle 033b9aec67 feat(appbase): 添加桌面图标快捷菜单并修复颜色资源崩溃
1. 桌面图标长按快捷菜单
   - 在MainActivity注册动态快捷方式,长按桌面图标显示
   - 快捷入口邮件设置,点击打开APPExcetionMailSettingsActivity

2. 修复colors.xml移除后XML资源引用崩溃
   - drawable/styles/layout中28处@color/引用替换为内联色值
   - 修复CrashActivity启动时Resources:
     ic_launcher_background → @color/colorPrimary 找不到
2026-07-21 13:26:10 +08:00

15 lines
580 B
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<!-- 按钮状态选择器:按优先级匹配(按压 > 禁用 > 默认) -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 状态 1:按压时(手指按住)→ 深灰色 -->
<item android:color="#757575" android:state_pressed="true"/>
<!-- 状态 2:禁用时(setEnabled(false))→ 浅灰色 -->
<item android:color="#E0E0E0" android:state_enabled="false"/>
<!-- 状态 3:默认态(正常可点击)→ 常规灰色 -->
<item android:color="#9E9E9E"/>
</selector>