根布局加上android:descendantFocusability="blocksDescendants"就可以解决问题
1. beforeDescendants:ViewGroup 会优先其子类控件而获取到焦点
2. afterDescendants:ViewGroup 只有当其子类控件不需要获取焦点时才获取焦点
3. blocksDescendants:ViewGroup 会覆盖子类控件而直接获得焦点
根布局加上android:descendantFocusability="blocksDescendants"就可以解决问题
1. beforeDescendants:ViewGroup 会优先其子类控件而获取到焦点
2. afterDescendants:ViewGroup 只有当其子类控件不需要获取焦点时才获取焦点
3. blocksDescendants:ViewGroup 会覆盖子类控件而直接获得焦点