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.java245 * <tt>contentView</tt>. The dimension of the window are (0,0).</p>
250 * @param contentView the popup's content
252 public PopupWindow(View contentView) { argument
253 this(contentView, 0, 0);
272 * <tt>contentView</tt>. The dimension of the window must be passed to
278 * @param contentView the popup's content
282 public PopupWindow(View contentView, int width, int height) { argument
283 this(contentView, width, height, false);
287 * <p>Create a new popup window which can display the <tt>contentView</tt>.
293 * @param contentView th
298 PopupWindow(View contentView, int width, int height, boolean focusable) argument
392 setContentView(View contentView) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java195 public RemoteViews contentView; field in class:Notification
198 * A large-format version of {@link #contentView}, giving the Notification an
566 contentView = RemoteViews.CREATOR.createFromParcel(parcel);
621 if (this.contentView != null) {
622 that.contentView = this.contentView.clone();
708 if (contentView != null) {
710 contentView.writeToParcel(parcel, 0);
783 * Sets the {@link #contentView} field to be a view with the standard "Latest Event"
804 RemoteViews contentView
[all...]

Completed in 1395 milliseconds