Reputation: 6373
I dont like to do much stuff in layout with xml, but I can read it well and everything is working. Why this warning is there ? I can disable it for sure, but I just don't understand it. I just want that bottom view catch click events so they don't get under, this seems working good and clickable is doing it, so I don't need focusable there at all, but I see it...
Upvotes: 13
Views: 4962
Reputation: 3149
For accessibility purposes. For instance, if the user is navigating through the keyboard, they can not move onto the clickable item without focusable attribute, hence cannot click.
Upvotes: 20