HomeSort by relevance Sort by last modified time
    Searched refs:blocksDescendants (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/tests/coretests/src/android/widget/focus/
DescendantFocusability.java 34 public ViewGroup blocksDescendants;
49 blocksDescendants = (ViewGroup) findViewById(R.id.blocksDescendants);
50 blocksDescendantsChild = (Button) blocksDescendants.getChildAt(0);
DescendantFocusabilityTest.java 50 a.blocksDescendants.getDescendantFocusability());
86 a.blocksDescendants.setFocusable(true);
87 assertTrue(a.blocksDescendants.requestFocus());
88 assertTrue(a.blocksDescendants.isFocused());
91 a.blocksDescendants.setFocusable(false);
92 assertFalse(a.blocksDescendants.requestFocus());
93 assertFalse(a.blocksDescendants.isFocused());

Completed in 65 milliseconds