Searched defs:WILL_NOT_DRAW (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/
H A DView.java1333 static final int WILL_NOT_DRAW = 0x00000080; field in class:View
5496 out.append((mViewFlags&DRAW_MASK) == WILL_NOT_DRAW ? '.' : 'D');
9808 setFlags(willNotDraw ? WILL_NOT_DRAW : 0, DRAW_MASK);
9818 return (mViewFlags & DRAW_MASK) == WILL_NOT_DRAW;
13439 if ((mViewFlags & WILL_NOT_DRAW) != 0) {
20129 } else if ((mViewFlags & WILL_NOT_DRAW) != 0 && mBackground == null
20484 if ((mViewFlags & WILL_NOT_DRAW) != 0
20677 } else if ((mViewFlags & WILL_NOT_DRAW) != 0 && mBackground == null

Completed in 76 milliseconds