What does using a plain View with a click listener instead of a Button cost?
- A Keyboard operability, focus handling and correct screen reader announcement
- B Rendering performance only
- C Additional memory
- D Build time
Answer
Keyboard operability, focus handling and correct screen reader announcement
Native components provide accessibility semantics for free, which a custom clickable view must reimplement manually.





