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

  /cts/tests/tests/view/src/android/view/cts/
ViewGroupTest.java 783 final int FLAG_MASK_FOCUSABILITY = 0x60000;
784 assertFalse((vg.getDescendantFocusability() & FLAG_MASK_FOCUSABILITY) == 0);
787 assertFalse((vg.getDescendantFocusability() & FLAG_MASK_FOCUSABILITY) == 0);
    [all...]
  /frameworks/base/core/java/android/view/
ViewGroup.java 306 private static final int FLAG_MASK_FOCUSABILITY = 0x60000;
559 return mGroupFlags & FLAG_MASK_FOCUSABILITY;
580 mGroupFlags &= ~FLAG_MASK_FOCUSABILITY;
581 mGroupFlags |= (focusability & FLAG_MASK_FOCUSABILITY);
    [all...]

Completed in 127 milliseconds