HomeSort by relevance Sort by last modified time
    Searched defs:mDecor (Results 1 - 6 of 6) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/ui/
QuickContactWindow.java 148 private View mDecor;
459 mDecor = mWindow.getDecorView();
460 mDecor.getViewTreeObserver().addOnGlobalLayoutListener(this);
467 mDecor.measure(l.width, l.height);
468 final int blockHeight = mDecor.getMeasuredHeight();
493 mWindowManager.addView(mDecor, l);
522 final int blockHeight = mDecor.getHeight();
550 boolean hadDecor = mDecor != null;
552 mWindowManager.removeView(mDecor);
554 mDecor.getViewTreeObserver().removeGlobalOnLayoutListener(this)
    [all...]
  /frameworks/policies/base/phone/com/android/internal/policy/impl/
PhoneWindow.java 97 private DecorView mDecor;
100 // mDecor itself, or a child of mDecor where the contents go.
238 return mDecor != null ? mDecor.findFocus() : null;
562 mDecor.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS);
865 if (mDecor != null) {
866 mDecor.setWindowBackground(drawable);
    [all...]
  /frameworks/base/core/java/android/widget/
MediaController.java 77 private View mDecor;
130 mDecor = mWindow.getDecorView();
131 mDecor.setOnTouchListener(mTouchListener);
304 mWindowManager.addView(mDecor, p);
335 mWindowManager.removeView(mDecor);
  /frameworks/policies/base/mid/com/android/internal/policy/impl/
MidWindow.java 96 private DecorView mDecor;
99 // mDecor itself, or a child of mDecor where the contents go.
271 return mDecor != null ? mDecor.findFocus() : null;
847 if (mDecor != null) {
848 mDecor.setWindowBackground(drawable);
    [all...]
  /frameworks/base/core/java/android/app/
Dialog.java 78 View mDecor;
218 if (mDecor != null) {
219 mDecor.setVisibility(View.VISIBLE);
229 mDecor = mWindow.getDecorView();
241 mWindowManager.addView(mDecor, l);
253 if (mDecor != null) {
254 mDecor.setVisibility(View.GONE);
273 if (mDecor == null || !mShowing) {
278 mWindowManager.removeView(mDecor);
280 mDecor = null
    [all...]
Activity.java 645 /*package*/ View mDecor = null;
    [all...]

Completed in 129 milliseconds