# 别摇小鸡 - 资源汇总表 > Android应用资源文件汇总,包含占位图和实际资源路径 ## 📋 资源分类 ### 🎨 情绪图标(已提供实际PNG文件) | 资源ID | 文件路径 | 尺寸 | 状态 | 说明 | |--------|----------|------|------|------| | `ic_emotion_happy` | `app/src/main/res/drawable/ic_emotion_happy.png` | 48dp | ✅ 实际资源 | 开心情绪图标 | | `ic_emotion_sad` | `app/src/main/res/drawable/ic_emotion_sad.png` | 48dp | ✅ 实际资源 | 悲伤情绪图标 | | `ic_emotion_angry` | `app/src/main/res/drawable/ic_emotion_angry.png` | 48dp | ✅ 实际资源 | 生气情绪图标 | | `ic_emotion_worried` | `app/src/main/res/drawable/ic_emotion_worried.png` | 48dp | ✅ 实际资源 | 烦恼情绪图标 | | `ic_emotion_lonely` | `app/src/main/res/drawable/ic_emotion_lonely.png` | 48dp | ✅ 实际资源 | 孤单情绪图标 | | `ic_emotion_scared` | `app/src/main/res/drawable/ic_emotion_scared.png` | 48dp | ✅ 实际资源 | 害怕情绪图标 | ### 🐔 小鸡动画(需要替换) | 资源ID | 文件路径 | 尺寸 | 状态 | 说明 | |--------|----------|------|------|------| | `ic_chick_idle` | `app/src/main/res/drawable/ic_chick_idle.xml` | 200dp | 🔄 占位图 | 小鸡待机状态 | | `ic_chick_happy` | `app/src/main/res/drawable/ic_chick_happy.xml` | 200dp | 🔄 占位图 | 小鸡开心状态 | | `ic_empty_chick` | `app/src/main/res/drawable/ic_empty_chick` | 120dp | 🔄 占位图 | 空白状态小鸡 | ### 🎬 Lottie动画(需要替换) | 资源ID | 文件路径 | 尺寸 | 状态 | 说明 | |--------|----------|------|------|------| | `chick_idle` | `app/src/main/res/raw/chick_idle.json` | 200x200 | 🔄 占位动画 | 小鸡待机动画 | | `chick_happy` | `app/src/main/res/raw/chick_happy.json` | 200x200 | 🔄 占位动画 | 小鸡开心动画 | ### 👤 用户头像(需要替换) | 资源ID | 文件路径 | 尺寸 | 状态 | 说明 | |--------|----------|------|------|------| | `ic_placeholder_avatar` | `app/src/main/res/drawable/ic_placeholder_avatar.xml` | 48dp | 🔄 占位图 | 用户头像占位符 | ### 🏷️ 功能图标(需要替换) | 资源ID | 文件路径 | 尺寸 | 状态 | 说明 | |--------|----------|------|------|------| | `ic_add` | `app/src/main/res/drawable/ic_add.xml` | 24dp | 🔄 占位图 | 添加按钮图标 | | `ic_add_circle` | `app/src/main/res/drawable/ic_add_circle.xml` | 24dp | 🔄 占位图 | 圆形添加图标 | | `ic_more` | `app/src/main/res/drawable/ic_more.xml` | 24dp | 🔄 占位图 | 更多功能图标 | | `ic_statistics` | `app/src/main/res/drawable/ic_statistics.xml` | 24dp | 🔄 占位图 | 统计页面图标 | | `ic_history` | `app/src/main/res/drawable/ic_history.xml` | 24dp | 🔄 占位图 | 历史记录图标 | | `ic_shake_phone` | `app/src/main/res/drawable/ic_shake_phone.xml` | 24dp | 🔄 占位图 | 摇晃手机图标 | ### 🎨 背景和装饰(需要替换) | 资源ID | 文件路径 | 尺寸 | 状态 | 说明 | |--------|----------|------|------|------| | `bg_bottom_sheet` | `app/src/main/res/drawable/bg_bottom_sheet.xml` | - | 🔄 占位图 | 底部弹框背景 | | `bg_bottom_sheet_handle` | `app/src/main/res/drawable/bg_bottom_sheet_handle.xml` | 40x4dp | 🔄 占位图 | 底部弹框拖动手柄 | | `bg_emotion_selected` | `app/src/main/res/drawable/bg_emotion_selected.xml` | - | 🔄 占位图 | 情绪选中状态背景 | | `ic_placeholder_background` | `app/src/main/res/drawable/ic_placeholder_background.xml` | 200dp | 🔄 占位图 | 通用背景占位符 | ## 🎯 使用建议 ### 高优先级(建议优先替换) 1. **小鸡动画图标** (`ic_chick_idle`, `ic_chick_happy`) - 核心功能 2. **小鸡Lottie动画** (`chick_idle`, `chick_happy`) - 动画效果 3. **添加按钮图标** (`ic_add`, `ic_add_circle`) - 核心交互 ### 中优先级 1. **用户头像** (`ic_placeholder_avatar`) - 个人设置功能 2. **导航图标** (`ic_more`, `ic_statistics`, `ic_history`) - 页面导航 ### 低优先级 1. **背景装饰** (`bg_*`) - 视觉美化 2. **摇晃手机图标** (`ic_shake_phone`) - 辅助说明 ## 📁 资源目录结构 ``` app/src/main/res/ ├── drawable/ │ ├── ic_emotion_*.png # 情绪图标(实际资源) │ ├── ic_chick_*.xml # 小鸡图标(占位) │ ├── ic_placeholder_*.xml # 占位图标 │ ├── ic_add*.xml # 功能图标(占位) │ ├── ic_more.xml # 更多图标(占位) │ ├── ic_statistics.xml # 统计图标(占位) │ ├── ic_history.xml # 历史图标(占位) │ ├── ic_shake_phone.xml # 摇晃图标(占位) │ └── bg_*.xml # 背景资源(占位) ├── raw/ │ ├── chick_idle.json # 待机动画(占位) │ └── chick_happy.json # 开心动画(占位) └── layout/ ├── dialog_emotion_selector.xml # 情绪选择弹框布局 ├── item_emotion_grid.xml # 情绪网格项布局 └── fragment_empty_state.xml # 空白状态布局 ``` ## 🔄 更新说明 **2025-10-23** - ✅ 成功集成实际情绪图标PNG文件 - ✅ 移除了冲突的Vector Drawable文件 - ✅ 修复了资源引用问题 - 🔄 需要替换占位图资源 --- *请根据此表格替换相应的占位图资源,确保应用具有统一的视觉风格。*