Searched refs:mContentView (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
D | Choreographer.java | 44 View mContentView; field in Choreographer 56 mContentView = content; in Choreographer() 66 float y = mContentView.getTranslationY(); in createAnimation() 77 Animator posAnim = ObjectAnimator.ofFloat(mContentView, "translationY", in createAnimation() 84 Animator fadeAnim = ObjectAnimator.ofFloat(mContentView, "alpha", in createAnimation() 85 mContentView.getAlpha(), appearing ? 1.0f : 0.0f); in createAnimation() 95 mContentView.getAlpha(), appearing ? 1.0f : 0.0f); in createAnimation() 146 if (mContentView.isHardwareAccelerated()) { in startAnimation() 147 mContentView.setLayerType(View.LAYER_TYPE_HARDWARE, null); in startAnimation() 148 mContentView.buildLayer(); in startAnimation() [all …]
|
/frameworks/base/core/java/android/widget/ |
D | PopupWindow.java | 82 private View mContentView; field in PopupWindow 376 return mContentView; in getContentView() 395 mContentView = contentView; in setContentView() 397 if (mContext == null && mContentView != null) { in setContentView() 398 mContext = mContentView.getContext(); in setContentView() 401 if (mWindowManager == null && mContentView != null) { in setContentView() 824 if (isShowing() || mContentView == null) { in showAtLocation() 878 if (isShowing() || mContentView == null) { in showAsDropDown() 945 if (mContentView == null || mContext == null || mWindowManager == null) { in preparePopup() 951 final ViewGroup.LayoutParams layoutParams = mContentView.getLayoutParams(); in preparePopup() [all …]
|
D | Editor.java | 1928 mContentView = linearLayout; in initContentView() 1929 mContentView.setBackgroundResource( in initContentView() 1942 mContentView.addView(mDeleteTextView); in initContentView() 2073 protected ViewGroup mContentView; field in Editor.PinnedPopupWindow 2093 mContentView.setLayoutParams(wrapContent); in PinnedPopupWindow() 2095 mPopupWindow.setContentView(mContentView); in PinnedPopupWindow() 2109 mContentView.measure( in measureContent() 2122 final int width = mContentView.getMeasuredWidth(); in computeLocalPosition() 2140 final int width = mContentView.getMeasuredWidth(); in updatePosition() 2228 mContentView = listView; in initContentView() [all …]
|
/frameworks/base/core/java/android/webkit/ |
D | PluginFullScreenHolder.java | 45 private View mContentView; field in PluginFullScreenHolder 76 mContentView = contentView; in setContentView() 143 mLayout.removeView(mContentView);
|
D | WebViewClassic.java | 596 private ViewGroup mContentView; field in WebViewClassic.PastePopupWindow 605 mContentView = linearLayout; in PastePopupWindow() 606 mContentView.setBackgroundResource( in PastePopupWindow() 618 mContentView.addView(mPasteTextView); in PastePopupWindow() 621 this.setContentView(mContentView); in PastePopupWindow() 628 int width = mContentView.getMeasuredWidth(); in show() 629 int height = mContentView.getMeasuredHeight(); in show() 660 mContentView.measure( in measureContent()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ActionBarImpl.java | 82 private View mContentView; field in ActionBarImpl 125 if (mContentView != null) { 126 mContentView.setTranslationY(0); 156 mContentView = decor.findViewById(android.R.id.content); in ActionBarImpl() 687 if (mContentView != null) { in doShow() 688 b.with(ObjectAnimator.ofFloat(mContentView, "translationY", in doShow() 712 if (mContentView != null) { in doShow() 713 mContentView.setTranslationY(0); in doShow() 745 if (mContentView != null) { in doHide() 746 b.with(ObjectAnimator.ofFloat(mContentView, "translationY", in doHide()
|
/frameworks/base/core/java/android/app/ |
D | Notification.java | 927 private RemoteViews mContentView; field in Notification.Builder 1106 mContentView = views; in setContent() 1502 if (mContentView != null) { in makeContentView() 1503 return mContentView; in makeContentView() 1513 if (mContentView == null) { in makeTickerView()
|