Implement ViewBinding, RecyclerView, and XML layouts correctly on Android. Use when working with XML layouts, ViewBinding, or RecyclerView adapters in legacy Android projects.
Scanned 6/6/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill android-xml-views --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Android Xml Views?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-android-xml-views)More formats (shields.io, HTML) on the badges page.
---
name: android-xml-views
description: Implement ViewBinding, RecyclerView, and XML layouts correctly on Android. Use when working with XML layouts, ViewBinding, or RecyclerView adapters in legacy Android projects.
metadata:
triggers:
files:
- 'layout/*.xml'
- '**/*Binding.java'
- '**/*Binding.kt'
keywords:
- ViewBinding
- ConstraintLayout
- RecyclerView
---
# Android XML Views Standards
## **Priority: P1**
## Implementation Guidelines
### ViewBinding
- **Standard**: Use ViewBinding for all XML layouts.
- **Synthetics**: `kotlin-android-extensions` Dead. Remove it.
- **KAPT**: Avoid DataBinding unless strictly necessary (impacts build speed).
### RecyclerView
- **Adapter**: Always inherit `ListAdapter` (wraps AsyncListDiffer).
- **Updates**: Provide proper `DiffUtil.ItemCallback`. NEVER call `notifyDataSetChanged()`.
### Layouts
- **ConstraintLayout**: Use for complex flat hierarchies.
- **Performance**: Avoid deep nesting (LinearLayout inside LinearLayout).
## Anti-Patterns
- **No findViewById**: Deprecated. Use ViewBinding for all XML layouts.
- **No kotlin-android-extensions**: Deprecated. Remove all `import kotlinx.android.synthetic.*`.
## References
- [ViewBinding & Adapter](references/implementation.md)No comments yet. Be the first to comment!