一键导入
m3e-haptic-standards
Guidelines for premium tactile "Felt" experience in Varisankya
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guidelines for premium tactile "Felt" experience in Varisankya
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guidelines for managing Varisankya releases across Beta and Production tracks.
How to safely record extra payments without advancing the Varisankya subscription next due date.
Instructions for extracting the Play Store upload keystore, Firebase JSON, and passwords from Bitwarden.
Standard operating procedure for concluding an AI agent session and ensuring workspace integrity.
Guidelines for compiling Varisankya from the CLI without Android Studio.
How to correctly handle custom dates for extra subscription payments using MaterialDatePicker.
| name | M3E Haptic Standards |
| description | Guidelines for premium tactile "Felt" experience in Varisankya |
To achieve the "Premium Felt" experience, haptics must be curated based on the interaction weight:
| Interaction | Haptic Role | Method |
|---|---|---|
| Scrolling | Mechanical Tick | PreferenceHelper.attachScrollHaptics(recyclerView) |
| Success/Save | Confirmation | PreferenceHelper.performSuccessHaptic(view) |
| Error/Reject | Reject | PreferenceHelper.performErrorHaptic(view) |
| Toggle/Click | Light Tick | PreferenceHelper.performClickHaptic(view) |
| Long Press | Contextual | HapticFeedbackConstants.LONG_PRESS |
Attach to ANY list containing core data:
PreferenceHelper.attachScrollHaptics(recyclerView)
NEVER call performHapticFeedback directly in Activities. Use PreferenceHelper to ensure the user's preference is respected:
saveButton.setOnClickListener {
PreferenceHelper.performSuccessHaptic(it)
// ... save logic ...
}
For AutoCompleteTextViews or Bottom Sheets, trigger a tick on every delta/selection:
PreferenceHelper.performHaptics(v, HapticFeedbackConstants.SEGMENT_TICK)