When a child view gains focus, I would like to receive onFocusChange(...)
event for both the View and it's parent ViewGroup.
<LinearLayout
...
android:focusable="true"
android:descendantFocusability="beforeDescendants">
<TextView
...
android:focusable="true"/>
<TextView
...
android:focusable="true"/>
</LinearLayout>
However, making children focusable stops the parent from receiving focus. The parent's attributes seem to be ignored.
Is there any documentation on the compound behaviour of focusable views?
How can I receive focus event for the parent in addition to it's views?