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

/frameworks/base/services/java/com/android/server/status/
H A DStatusBarNotification.java26 View contentView; field in class:StatusBarNotification
H A DNotificationData.java32 public RemoteViews contentView; field in class:NotificationData
42 + " contentView=" + contentView + " when=" + when + ")";
/frameworks/base/core/java/android/webkit/
H A DPluginFullScreenHolder.java47 public void setContentView(View contentView) { argument
52 contentView.setLayoutParams(new ViewGroup.LayoutParams(
59 if (contentView instanceof SurfaceView) {
60 final SurfaceView sView = (SurfaceView) contentView;
65 super.setContentView(contentView);
66 mContentView = contentView;
111 // manually remove the contentView's parent since the dialog does not
/frameworks/base/core/java/android/app/
H A DNotification.java120 public RemoteViews contentView; field in class:Notification
328 contentView = RemoteViews.CREATOR.createFromParcel(parcel);
376 if (contentView != null) {
378 contentView.writeToParcel(parcel, 0);
418 * Sets the {@link #contentView} field to be a view with the standard "Latest Event"
434 RemoteViews contentView = new RemoteViews(context.getPackageName(),
437 contentView.setImageViewResource(com.android.internal.R.id.icon, this.icon);
440 contentView.setTextViewText(com.android.internal.R.id.title, contentTitle);
443 contentView.setTextViewText(com.android.internal.R.id.text, contentText);
446 contentView
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java221 * <tt>contentView</tt>. The dimension of the window are (0,0).</p>
226 * @param contentView the popup's content
228 public PopupWindow(View contentView) { argument
229 this(contentView, 0, 0);
248 * <tt>contentView</tt>. The dimension of the window must be passed to
254 * @param contentView the popup's content
258 public PopupWindow(View contentView, int width, int height) { argument
259 this(contentView, width, height, false);
263 * <p>Create a new popup window which can display the <tt>contentView</tt>.
269 * @param contentView th
274 PopupWindow(View contentView, int width, int height, boolean focusable) argument
369 setContentView(View contentView) argument
[all...]

Completed in 258 milliseconds