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

/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.java131 public RemoteViews contentView; field in class:Notification
339 contentView = RemoteViews.CREATOR.createFromParcel(parcel);
374 if (this.contentView != null) {
375 that.contentView = this.contentView.clone();
430 if (contentView != null) {
432 contentView.writeToParcel(parcel, 0);
479 * Sets the {@link #contentView} field to be a view with the standard "Latest Event"
495 RemoteViews contentView = new RemoteViews(context.getPackageName(),
498 contentView
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java228 * <tt>contentView</tt>. The dimension of the window are (0,0).</p>
233 * @param contentView the popup's content
235 public PopupWindow(View contentView) { argument
236 this(contentView, 0, 0);
255 * <tt>contentView</tt>. The dimension of the window must be passed to
261 * @param contentView the popup's content
265 public PopupWindow(View contentView, int width, int height) { argument
266 this(contentView, width, height, false);
270 * <p>Create a new popup window which can display the <tt>contentView</tt>.
276 * @param contentView th
281 PopupWindow(View contentView, int width, int height, boolean focusable) argument
376 setContentView(View contentView) argument
[all...]

Completed in 62 milliseconds