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

/frameworks/base/core/java/android/webkit/
H A DPluginFullScreenHolder.java53 public void setContentView(View contentView) { argument
62 mLayout.addView(contentView, layoutParams);
69 if (contentView instanceof SurfaceView) {
70 final SurfaceView sView = (SurfaceView) contentView;
76 mContentView = contentView;
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java243 * <tt>contentView</tt>. The dimension of the window are (0,0).</p>
248 * @param contentView the popup's content
250 public PopupWindow(View contentView) { argument
251 this(contentView, 0, 0);
270 * <tt>contentView</tt>. The dimension of the window must be passed to
276 * @param contentView the popup's content
280 public PopupWindow(View contentView, int width, int height) { argument
281 this(contentView, width, height, false);
285 * <p>Create a new popup window which can display the <tt>contentView</tt>.
291 * @param contentView th
296 PopupWindow(View contentView, int width, int height, boolean focusable) argument
390 setContentView(View contentView) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java194 public RemoteViews contentView; field in class:Notification
197 * A large-format version of {@link #contentView}, giving the Notification an
565 contentView = RemoteViews.CREATOR.createFromParcel(parcel);
620 if (this.contentView != null) {
621 that.contentView = this.contentView.clone();
707 if (contentView != null) {
709 contentView.writeToParcel(parcel, 0);
782 * Sets the {@link #contentView} field to be a view with the standard "Latest Event"
803 RemoteViews contentView
[all...]

Completed in 90 milliseconds