ワンクリックで
header-action-styling
Standards for top-bar action icons, alignment, and tints
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Standards for top-bar action icons, alignment, and tints
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 | Header Action Styling |
| description | Standards for top-bar action icons, alignment, and tints |
This skill documents the standardized design for the application's header (Toolbar) actions.
| Action | Location | implementation |
|---|---|---|
| History | Hero Card | Tapping the "Remaining Expenses" hero card opens History. |
| Add New | FAB | Floating Action Button (Bottom Right) with colorPrimary. |
| Profile | Toolbar | Top right corner, clearly separated. |
| Search | Toolbar | Top left/center (Trigger layout). |
Always use standard Android Menu Items (onCreateOptionsMenu) for action buttons (like Logout, Edit, Save).
ConstraintLayout or TextView into the Toolbar unless absolutely necessary for branding.To achieve pixel-perfect visual alignment between different screen headers:
app:contentInsetEnd="24dp" for solid elements (like Profile Images).app:contentInsetEnd="32dp" for Menu Items.
Logo Shake: Tapping the Profile/Logo image MUST trigger a premium rotation shake:
view.animate().rotationBy(15f).setDuration(100).withEndAction {
view.animate().rotationBy(-30f).setDuration(200).withEndAction {
view.animate().rotation(0f).setDuration(100).start()
}.start()
}.start()
Tactile Spring: All header trigger layouts (Search, Profile) MUST use AnimationHelper.applySpringOnTouch().
Mechanical Scroll: Toolbar transparency or elevation changes should coincide with scroll ticks if possible.