Home
last modified time | relevance | path

Searched refs:afterDescendants (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/focus/
DDescendantFocusabilityTest.java48 a.afterDescendants.getDescendantFocusability()); in testPreconditions()
73 a.afterDescendants.setFocusable(true); in testAfterDescendants()
75 assertTrue(a.afterDescendants.requestFocus()); in testAfterDescendants()
78 a.afterDescendants.setFocusable(false); in testAfterDescendants()
79 assertTrue(a.afterDescendants.requestFocus()); in testAfterDescendants()
124 a.afterDescendants.setFocusableInTouchMode(true); in testAfterDescendantsEnterTouchMode()
134 assertTrue(a.afterDescendants.isFocused()); in testAfterDescendantsEnterTouchMode()
DDescendantFocusability.java31 public ViewGroup afterDescendants; field in DescendantFocusability
46 afterDescendants = findViewById(R.id.afterDescendants); in onCreate()
47 afterDescendantsChild = (Button) afterDescendants.getChildAt(0); in onCreate()