Searched refs:mBackgroundFallback (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DBackgroundFallback.java32 private Drawable mBackgroundFallback; field in class:BackgroundFallback
35 mBackgroundFallback = d;
39 return mBackgroundFallback != null;
85 mBackgroundFallback.setBounds(0, 0, width, top);
86 mBackgroundFallback.draw(c);
89 mBackgroundFallback.setBounds(0, top, left, height);
90 mBackgroundFallback.draw(c);
93 mBackgroundFallback.setBounds(right, top, width, height);
94 mBackgroundFallback.draw(c);
97 mBackgroundFallback
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java2214 private final BackgroundFallback mBackgroundFallback = new BackgroundFallback(); field in class:PhoneWindow.DecorView
2239 mBackgroundFallback.setDrawable(resId != 0 ? getContext().getDrawable(resId) : null);
2240 setWillNotDraw(getBackground() == null && !mBackgroundFallback.hasFallback());
2246 mBackgroundFallback.draw(mContentRoot, c, mContentParent);

Completed in 121 milliseconds