HomeSort by relevance Sort by last modified time
    Searched refs:contentView (Results 1 - 25 of 51) sorted by null

1 2 3

  /frameworks/base/core/java/android/webkit/
PluginFullScreenHolder.java 47 public void setContentView(View contentView) {
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/
Notification.java 131 public RemoteViews contentView;
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.setImageViewResource(com.android.internal.R.id.icon, this.icon)
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
NotificationTest.java 116 final RemoteViews contentView = new RemoteViews(mContext.getPackageName(),
118 mNotification.contentView = contentView;
141 assertNotNull(result.contentView);
175 mNotification.contentView = null;
180 assertNull(result.contentView);
202 assertTrue(mNotification.contentView instanceof RemoteViews);
203 assertNotNull(mNotification.contentView);
  /external/webkit/WebCore/platform/mac/
WebCoreView.m 60 NSView *view = [self contentView];
ScrollViewMac.mm 99 [[scrollView() contentView] setCopiesOnScroll:canBlitOnScroll];
105 return [[scrollView() contentView] copiesOnScroll];
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBtErrorActivity.java 74 TextView contentView = (TextView)view.findViewById(R.id.content);
75 contentView.setText(mErrorContent);
BluetoothOppBtEnableActivity.java 71 TextView contentView = (TextView)view.findViewById(R.id.content);
72 contentView.setText(getString(R.string.bt_enable_line1) + "\n\n"
BluetoothOppBtEnablingActivity.java 87 TextView contentView = (TextView)view.findViewById(R.id.progress_info);
88 contentView.setText(getString(R.string.enabling_progress_content));
  /external/webkit/WebKitTools/DumpRenderTree/mac/
DumpRenderTreeWindow.mm 94 if ([[[self contentView] subviews] count] > 0) {
95 firstView = [[[self contentView] subviews] objectAtIndex:0];
  /external/webkit/WebKit/mac/WebView/
WebViewEventHandling.mm 162 NSView *contentView = [[event window] contentView];
163 NSPoint locationForHitTest = [[contentView superview] convertPoint:[event locationInWindow] fromView:nil];
164 for (NSView *hitView = [contentView hitTest:locationForHitTest]; hitView; hitView = [hitView superview]) {
WebVideoFullscreenHUDWindowController.mm 290 [[window contentView] removeTrackingArea:_area];
374 NSView *contentView = [window contentView];
381 [contentView addSubview:_playButton];
387 [contentView addSubview:exitFullscreenButton];
393 [contentView addSubview:volumeDownButton];
403 [contentView addSubview:_volumeSlider];
409 [contentView addSubview:volumeUpButton];
420 [contentView addSubview:_timeline];
424 [contentView addSubview:_elapsedTimeText]
    [all...]
WebDynamicScrollBarsView.mm 79 [super reflectScrolledClipView:[self contentView]];
194 if (clipView == [self contentView]) {
  /external/webkit/WebKit/mac/Plugins/Hosted/
WebTextInputWindowController.m 66 _inputTextView = [[NSTextView alloc] initWithFrame:[self.contentView frame]];
69 NSScrollView* scrollView = [[NSScrollView alloc] initWithFrame:[self.contentView frame]];
71 self.contentView = scrollView;
  /external/webkit/WebKit/mac/Carbon/
CarbonWindowAdapter.mm 83 - _initContent:(const NSRect *)contentRect styleMask:(unsigned int)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag contentView:aView;
147 ControlRef contentView;
189 self = (CarbonWindowAdapter*)[super _initContent:NULL styleMask:styleMask backing:backingStoreType defer:YES contentView:carbonWindowContentView];
226 HIViewFindByID( HIViewGetRoot( _windowRef ), kHIViewWindowContentID, &contentView );
227 osStatus = InstallEventHandler( GetControlEventTarget( contentView ), NSCarbonWindowHandleEvent, 1, &kControlBoundsChangedEvent, (void*)self, &_eventHandler);
539 // There's no override of _initContent:styleMask:backing:defer:contentView:, despite the fact that NSWindow's modifies _auxiliaryStorage->_auxWFlags.hasShadow, because it will never get called if the class instance is properly initialized with -[NSCarbonWindow initWithCarbonWindowRef:takingOwnership:].
633 HIViewRef contentView;
635 GetRootControl( GetControlOwner( view ), &contentView );
636 HIViewAdvanceFocus( contentView, 0 );
651 HIViewRef contentView;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
StatusBarNotifications.java 184 // can set the contentView field to your own RemoteViews object.
198 RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.status_bar_balloon);
199 contentView.setTextViewText(R.id.text, text);
200 contentView.setImageViewResource(R.id.icon, moodId);
201 notif.contentView = contentView;
  /frameworks/base/core/java/android/preference/
DialogPreference.java 285 View contentView = onCreateDialogView();
286 if (contentView != null) {
287 onBindDialogView(contentView);
288 mBuilder.setView(contentView);
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerTestActivity.java 68 LinearLayout contentView = new LinearLayout(this);
69 contentView.setOrientation(LinearLayout.VERTICAL);
70 setContentView(contentView);
83 contentView.addView(webView, new LayoutParams(
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
ReliabilityTestActivity.java 72 LinearLayout contentView = new LinearLayout(this);
73 contentView.setOrientation(LinearLayout.VERTICAL);
74 setContentView(contentView);
87 contentView.addView(webView, new LayoutParams(
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 155 TextView contentView = new TextView(mActivity);
156 mPopupWindow = new PopupWindow(contentView);
157 assertSame(contentView, mPopupWindow.getContentView());
159 mPopupWindow = new PopupWindow(contentView, 0, 0);
162 assertSame(contentView, mPopupWindow.getContentView());
164 mPopupWindow = new PopupWindow(contentView, 50, 50);
167 assertSame(contentView, mPopupWindow.getContentView());
169 mPopupWindow = new PopupWindow(contentView, -1, -1);
172 assertSame(contentView, mPopupWindow.getContentView());
174 mPopupWindow = new PopupWindow(contentView, 0, 0, true)
    [all...]
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationTestList.java 152 n.contentView.setInt(1 /*bogus*/, "bogus method", 666);
163 n.contentView.setInt(1 /*bogus*/, "bogus method", 666);
177 n.contentView.setInt(1 /*bogus*/, "bogus method", 666);
519 n.contentView = new RemoteViews(getPackageName(), R.layout.chrono_notification);
521 n.contentView.setChronometer(R.id.time, mChronometerBase, "Yay! (%s)", true);
535 n.contentView = new RemoteViews(getPackageName(),
537 n.contentView.setChronometer(R.id.time, mChronometerBase, null, false);
  /external/webkit/WebKit/mac/WebCoreSupport/
WebInspectorClient.mm 346 NSView *contentView = [[self window] contentView];
347 [_webView setFrame:[contentView frame]];
350 [contentView addSubview:_webView];
412 NSView *view = [[[[[_inspectedWebView mainFrame] frameView] documentView] enclosingScrollView] contentView];
  /frameworks/base/core/java/android/widget/
PopupWindow.java 228 * <tt>contentView</tt>. The dimension of the window are (0,0).</p>
233 * @param contentView the popup's content
235 public PopupWindow(View contentView) {
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) {
266 this(contentView, width, height, false);
270 * <p>Create a new popup window which can display the <tt>contentView</tt>.
276 * @param contentView the popup's conten
    [all...]
  /packages/apps/Phone/src/com/android/phone/
NotificationMgr.java 592 RemoteViews contentView = new RemoteViews(mContext.getPackageName(),
594 contentView.setImageViewResource(R.id.icon, expandedViewIcon);
636 contentView.setChronometer(R.id.text1,
670 contentView.setTextViewText(R.id.text2, expandedViewLine2);
671 notification.contentView = contentView;
702 * refreshes the contentView when called.
    [all...]
  /packages/apps/Stk/src/com/android/stk/
StkAppService.java 703 RemoteViews contentView = new RemoteViews(
712 contentView.setTextViewText(com.android.internal.R.id.text,
716 contentView.setImageViewBitmap(com.android.internal.R.id.icon,
719 contentView
724 notification.contentView = contentView;
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
ConnectivityManagerTestActivity.java 170 LinearLayout contentView = new LinearLayout(this);
171 contentView.setOrientation(LinearLayout.VERTICAL);
172 setContentView(contentView);

Completed in 496 milliseconds

1 2 3