Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在这种情况下,我需要让我的子视图在父视图之前获得焦点。
此外,就“焦点”而言,我不能将父视图设置为 false,因为我希望它在子视图首先获得焦点后成为焦点。
有没有办法使用 XML 来实现?
您应该android:descendantFocusability = "afterDescendants"在父视图上使用,并设置android:focusable="true"在您要关注的视图上。
android:descendantFocusability = "afterDescendants"
android:focusable="true"