Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/widget/focus/
DDescendantFocusabilityTest.java46 a.beforeDescendants.getDescendantFocusability()); in testPreconditions()
60 a.beforeDescendants.setFocusable(true); in testBeforeDescendants()
62 assertTrue(a.beforeDescendants.requestFocus()); in testBeforeDescendants()
63 assertTrue(a.beforeDescendants.isFocused()); in testBeforeDescendants()
65 a.beforeDescendants.setFocusable(false); in testBeforeDescendants()
66 a.beforeDescendants.requestFocus(); in testBeforeDescendants()
107 a.beforeDescendants.setFocusableInTouchMode(true); in testBeforeDescendantsEnterTouchMode()
117 assertFalse(a.beforeDescendants.isFocused()); in testBeforeDescendantsEnterTouchMode()
DDescendantFocusability.java28 public ViewGroup beforeDescendants; field in DescendantFocusability
43 beforeDescendants = findViewById(R.id.beforeDescendants); in onCreate()
44 beforeDescendantsChild = (Button) beforeDescendants.getChildAt(0); in onCreate()