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

/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/
H A DDialogFragmentUsage.java86 static MenuDialogFragment create(int contentView) { argument
88 b.putInt(PARAM_CONTENT_VIEW, contentView);
107 int contentView = args.getInt(PARAM_CONTENT_VIEW);
108 return inflater.inflate(contentView, container, false);
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/
H A DDialogFragmentUsage.java86 static MenuDialogFragment create(int contentView) { argument
88 b.putInt(PARAM_CONTENT_VIEW, contentView);
107 int contentView = args.getInt(PARAM_CONTENT_VIEW);
108 return inflater.inflate(contentView, container, false);
/frameworks/base/core/java/android/view/autofill/
H A DAutofillPopupWindow.java298 public void setContentView(View contentView) { argument
299 if (contentView != null) {
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
H A DFillUi.java387 * @param contentView content of the window
389 AnchoredWindow(View contentView, @NonNull OverlayControl overlayControl) { argument
390 mWm = contentView.getContext().getSystemService(WindowManager.class);
391 mContentView = contentView;
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java342 * <tt>contentView</tt>. The dimension of the window are (0,0).</p>
347 * @param contentView the popup's content
349 public PopupWindow(View contentView) { argument
350 this(contentView, 0, 0);
369 * <tt>contentView</tt>. The dimension of the window must be passed to
375 * @param contentView the popup's content
379 public PopupWindow(View contentView, int width, int height) { argument
380 this(contentView, width, height, false);
384 * <p>Create a new popup window which can display the <tt>contentView</tt>.
390 * @param contentView th
395 PopupWindow(View contentView, int width, int height, boolean focusable) argument
631 setContentView(View contentView) argument
1375 createBackgroundView(View contentView) argument
1398 createDecorView(View contentView) argument
1981 dismissImmediate(View decorView, ViewGroup contentHolder, View contentView) argument
[all...]
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java866 mNotification.contentView = views;
1367 public Builder setCustomContentView(RemoteViews contentView) { argument
1368 mContentView = contentView;
1380 public Builder setCustomBigContentView(RemoteViews contentView) { argument
1381 mBigContentView = contentView;
1393 public Builder setCustomHeadsUpContentView(RemoteViews contentView) { argument
1394 mHeadsUpContentView = contentView;
1639 RemoteViews contentView = new RemoteViews(mBuilder.mContext.getPackageName(), resId);
1647 contentView.setInt(R.id.notification_background,
1649 contentView
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java316 public RemoteViews contentView; field in class:Notification
319 * A large-format version of {@link #contentView}, giving the Notification an
332 * A medium-format version of {@link #contentView}, providing the Notification an
333 * opportunity to add action buttons to contentView. At its discretion, the system UI may
1901 contentView = RemoteViews.CREATOR.createFromParcel(parcel);
2002 if (heavy && this.contentView != null) {
2003 that.contentView = this.contentView.clone();
2097 contentView = null;
2253 if (contentView !
3208 setCustomContentView(RemoteViews contentView) argument
3219 setCustomBigContentView(RemoteViews contentView) argument
3230 setCustomHeadsUpContentView(RemoteViews contentView) argument
3828 bindProfileBadge(RemoteViews contentView) argument
3841 resetStandardTemplate(RemoteViews contentView) argument
3856 resetNotificationHeader(RemoteViews contentView) argument
3871 resetContentMargins(RemoteViews contentView) argument
3930 setTextViewColorPrimary(RemoteViews contentView, int id) argument
3969 setTextViewColorSecondary(RemoteViews contentView, int id) argument
4057 updateBackgroundColor(RemoteViews contentView) argument
4083 handleProgressBar(boolean hasProgress, RemoteViews contentView, Bundle ex) argument
4106 bindLargeIcon(RemoteViews contentView) argument
4167 bindNotificationHeader(RemoteViews contentView, boolean ambient) argument
4179 bindExpandButton(RemoteViews contentView) argument
4195 bindHeaderChronometerAndTime(RemoteViews contentView) argument
4219 bindHeaderText(RemoteViews contentView) argument
4274 bindHeaderAppName(RemoteViews contentView, boolean ambient) argument
4284 bindSmallIcon(RemoteViews contentView, boolean ambient) argument
4809 processSmallIconColor(Icon smallIcon, RemoteViews contentView, boolean ambient) argument
4827 processLargeLegacyIcon(Icon largeIcon, RemoteViews contentView) argument
5842 applyBigTextContentView(Builder builder, RemoteViews contentView, CharSequence bigTextText) argument
6570 handleInboxImageMargin(RemoteViews contentView, int id, boolean first) argument
6817 handleImage(RemoteViews contentView) argument
[all...]

Completed in 3872 milliseconds