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

1 2 3 4

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPopupWindow.java 19 private View contentView;
33 public void __constructor__(View contentView) {
34 setContentView(contentView);
38 public void __constructor__(View contentView, int width, int height, boolean focusable) {
39 __constructor__(contentView);
46 public void setContentView(View contentView) {
47 this.contentView = contentView;
48 context = contentView.getContext();
53 return contentView;
    [all...]
ShadowTabSpec.java 22 private View contentView;
98 contentView = factory.createTabContent(this.tag);
114 return contentView;
ShadowActivity.java 39 private View contentView;
98 * Sets the {@code contentView} for this {@code Activity} by invoking the
106 contentView = getLayoutInflater().inflate(layoutResID, new FrameLayout(realActivity));
112 contentView = view;
138 * Checks to ensure that the{@code contentView} has been set
142 * @throws RuntimeException if the {@code contentView} has not been called first
149 if (contentView != null) {
150 return contentView.findViewById(id);
162 contentViewContainer.addView(contentView, 0);
265 * @return the {@code contentView} set by one of the {@code setContentView()} method
    [all...]
  /frameworks/base/core/java/android/app/
Notification.java 248 public RemoteViews contentView;
251 * A large-format version of {@link #contentView}, giving the Notification an
259 * A medium-format version of {@link #contentView}, providing the Notification an
260 * opportunity to add action buttons to contentView. At its discretion, the system UI may
    [all...]
  /developers/build/prebuilts/gradle/CustomNotifications/Application/src/main/java/com/example/android/customnotifications/
MainActivity.java 76 RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification);
81 contentView.setTextViewText(R.id.textView, text);
88 notification.contentView = contentView;
92 // (The normal contentView is shown when the notification is collapsed, when expanded the
  /developers/samples/android/ui/notifications/CustomNotifications/Application/src/main/java/com/example/android/customnotifications/
MainActivity.java 76 RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification);
81 contentView.setTextViewText(R.id.textView, text);
88 notification.contentView = contentView;
92 // (The normal contentView is shown when the notification is collapsed, when expanded the
  /development/samples/browseable/CustomNotifications/src/com.example.android.customnotifications/
MainActivity.java 76 RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification);
81 contentView.setTextViewText(R.id.textView, text);
88 notification.contentView = contentView;
92 // (The normal contentView is shown when the notification is collapsed, when expanded the
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
EncryptDeviceActivity.java 51 final View contentView = getLayoutInflater().inflate(R.layout.encrypt_device, null);
52 mEncryptButton = (Button) contentView.findViewById(R.id.accept_button);
53 mCancelButton = (Button) contentView.findViewById(R.id.cancel_button);
54 setContentView(contentView);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
PopupWindowTest.java 43 View contentView = new View(null);
44 popupWindow.setContentView(contentView);
46 assertThat(popupWindow.getContentView(), is(contentView));
128 private View contentView;
134 contentView = new View(Robolectric.application);
135 contentView.setId(R.id.content_view);
141 PopupWindow popupWindow = new PopupWindow(contentView, 0, 0, true);
148 PopupWindow popupWindow = new PopupWindow(contentView, 0, 0, true);
156 PopupWindow popupWindow = new PopupWindow(contentView);
163 PopupWindow popupWindow = new PopupWindow(contentView);
    [all...]
  /development/samples/devbytes/ui/ImmersiveMode/src/main/java/com/example/android/immersive/
ImmersiveActivity.java 38 final View contentView = findViewById(R.id.fullscreen_content);
51 contentView.setClickable(true);
66 contentView.setOnTouchListener(new View.OnTouchListener() {
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java 361 RemoteViews contentView = new RemoteViews(context.getPackageName(),
363 contentView.setImageViewResource(R.id.image, R.drawable.stat_notify_calendar);
364 contentView.setTextViewText(R.id.title, title);
365 contentView.setTextViewText(R.id.text, summaryText);
369 contentView.setViewVisibility(R.id.map_button, View.GONE);
371 contentView.setViewVisibility(R.id.map_button, View.VISIBLE);
372 contentView.setOnClickPendingIntent(R.id.map_button, mapIntent);
373 contentView.setViewVisibility(R.id.end_padding, View.GONE);
377 contentView.setViewVisibility(R.id.call_button, View.GONE);
379 contentView.setViewVisibility(R.id.call_button, View.VISIBLE)
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
NotificationTest.java 79 final RemoteViews contentView = new RemoteViews(mContext.getPackageName(),
81 mNotification.contentView = contentView;
104 assertNotNull(result.contentView);
138 mNotification.contentView = null;
143 assertNull(result.contentView);
159 assertTrue(mNotification.contentView instanceof RemoteViews);
160 assertNotNull(mNotification.contentView);
  /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 96 TextView contentView = (TextView)view.findViewById(R.id.progress_info);
97 contentView.setText(getString(R.string.enabling_progress_content));
  /sdk/emulator/opengl/tests/translator_tests/MacCommon/
setup_gl.m 30 [[win contentView] addSubview:glView];
  /sdk/emulator/opengl/host/libs/libOpenglRender/
NativeMacSubWindow.m 51 [[win contentView] addSubview:glView];
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
InsertionHandleController.java 287 View contentView = mContainer.getContentView();
288 int width = contentView.getMeasuredWidth();
289 int height = contentView.getMeasuredHeight();
305 contentView = mContainer.getContentView();
306 width = contentView.getMeasuredWidth();
307 height = contentView.getMeasuredHeight();
  /external/chromium_org/third_party/mozilla/
ComplexTextInputPanel.mm 72 mInputTextView = [[NSTextView alloc] initWithFrame:[self.contentView frame]];
75 NSScrollView* scrollView = [[NSScrollView alloc] initWithFrame:[self.contentView frame]];
77 self.contentView = scrollView;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
StatusBarNotifications.java 217 // can set the contentView field to your own RemoteViews object.
231 RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.status_bar_balloon);
232 contentView.setTextViewText(R.id.text, text);
233 contentView.setImageViewResource(R.id.icon, moodId);
234 notif.contentView = contentView;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
SettingsLayoutFragment.java 318 View contentView = (View) dialogView.getTag(R.id.content_fragment);
321 TextView breadcrumbView = (TextView) contentView.getTag(R.id.breadcrumb);
325 TextView titleView = (TextView) contentView.getTag(R.id.title);
329 TextView descriptionView = (TextView) contentView.getTag(R.id.description);
341 View contentView = (View) dialogView.getTag(R.id.content_fragment);
342 ImageView iconView = (ImageView) contentView.findViewById(R.id.icon);
417 View contentView = (View) dialogView.getTag(R.id.content_fragment);
420 View titleView = (View) contentView.getTag(R.id.title);
421 View breadcrumbView = (View) contentView.getTag(R.id.breadcrumb);
422 View descriptionView = (View) contentView.getTag(R.id.description)
    [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
TabsAdapter.java 154 final View contentView = mTabs.get(position).view;
155 if (contentView instanceof CaffeinatedScrollView) {
156 ((CaffeinatedScrollView) contentView).awakenScrollBars();
  /external/chromium_org/third_party/webrtc/modules/video_render/test/testAPI/
testAPI_mac.mm 50 [[outWindow contentView] addSubview:(NSView*)cocoaRenderer];
  /external/chromium_org/chrome/browser/ui/cocoa/
presentation_mode_controller.h 88 - (void)enterPresentationModeForContentView:(NSView*)contentView
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_cocoa_mac.mm 53 [[window1_ contentView] addSubview:(NSView*)cocoaRenderView1_];
72 [[window2_ contentView] addSubview:(NSView*)cocoaRenderView2_];

Completed in 1952 milliseconds

1 2 3 4