Home
last modified time | relevance | path

Searched refs:mContentView (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/widget/
DPopupWindow.java84 private View mContentView; field in PopupWindow
381 return mContentView; in getContentView()
400 mContentView = contentView; in setContentView()
402 if (mContext == null && mContentView != null) { in setContentView()
403 mContext = mContentView.getContext(); in setContentView()
406 if (mWindowManager == null && mContentView != null) { in setContentView()
829 if (isShowing() || mContentView == null) { in showAtLocation()
906 if (isShowing() || mContentView == null) { in showAsDropDown()
973 if (mContentView == null || mContext == null || mWindowManager == null) { in preparePopup()
979 final ViewGroup.LayoutParams layoutParams = mContentView.getLayoutParams(); in preparePopup()
[all …]
DEditor.java2055 mContentView = linearLayout; in initContentView()
2056 mContentView.setBackgroundResource( in initContentView()
2069 mContentView.addView(mDeleteTextView); in initContentView()
2210 protected ViewGroup mContentView; field in Editor.PinnedPopupWindow
2230 mContentView.setLayoutParams(wrapContent); in PinnedPopupWindow()
2232 mPopupWindow.setContentView(mContentView); in PinnedPopupWindow()
2246 mContentView.measure( in measureContent()
2259 final int width = mContentView.getMeasuredWidth(); in computeLocalPosition()
2277 final int width = mContentView.getMeasuredWidth(); in updatePosition()
2365 mContentView = listView; in initContentView()
[all …]
/frameworks/base/docs/html/training/animation/
Dcrossfade.jd136 private View mContentView;
147 mContentView = findViewById(R.id.content);
151 mContentView.setVisibility(View.GONE);
185 private View mContentView;
195 mContentView.setAlpha(0f);
196 mContentView.setVisibility(View.VISIBLE);
200 mContentView.animate()
/frameworks/base/core/java/com/android/internal/app/
DActionBarImpl.java83 private View mContentView; field in ActionBarImpl
127 if (mContentAnimations && mContentView != null) {
128 mContentView.setTranslationY(0);
168 mContentView = decor.findViewById(android.R.id.content); in ActionBarImpl()
699 if (mContentAnimations && mContentView != null) { in doShow()
700 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y, in doShow()
724 if (mContentAnimations && mContentView != null) { in doShow()
725 mContentView.setTranslationY(0); in doShow()
758 if (mContentAnimations && mContentView != null) { in doHide()
759 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y, in doHide()
/frameworks/base/core/java/android/app/
DNotification.java1151 private RemoteViews mContentView; field in Notification.Builder
1342 mContentView = views; in setContent()
1749 if (mContentView != null) { in makeContentView()
1750 return mContentView; in makeContentView()
1760 if (mContentView == null) { in makeTickerView()
/frameworks/support/v7/appcompat/src/android/support/v7/app/
DActionBarImplBase.java66 private View mContentView; field in ActionBarImplBase