← ClaudeAtlas

android-compose-accessibilitylisted

Make Compose interfaces accessible with semantics, announcements, contrast, focus order, and adaptive touch targets.
Aotocom/android-agent-skills · ★ 2 · AI & Automation · score 78
Install: claude install-skill Aotocom/android-agent-skills
# Android Compose Accessibility ## When To Use - Use this skill when the request is about: compose accessibility review, android semantics issue compose, focus order in compose. - Primary outcome: Make Compose interfaces accessible with semantics, announcements, contrast, focus order, and adaptive touch targets. - Handoff skills when the scope expands: - `android-ui-states-validation` - `android-testing-ui` ## Workflow 1. Identify whether the target surface is Compose, View system, or a mixed interoperability screen. 2. Select the lowest-friction UI pattern that satisfies responsiveness, accessibility, and performance needs. 3. Build the UI around stable state, explicit side effects, and reusable design tokens. 4. Exercise edge cases such as long text, font scaling, RTL, and narrow devices in the fixture apps. 5. Validate with unit, UI, and screenshot-friendly checks before handing off. ## Guardrails - Optimize for stable state and predictable rendering before adding animation or abstraction. - Respect accessibility semantics, contrast, focus order, and touch target guidance by default. - Do not mix Compose and View system ownership without an explicit interoperability boundary. - Prefer measured performance work over premature micro-optimizations. ## Anti-Patterns - Embedding navigation or business logic directly in leaf UI components. - Using fixed dimensions that break on localization or dynamic text. - Ignoring semantics and announcing only visual changes. - Porting X