Searched refs:fullScreenIntent (Results 1 - 9 of 9) sorted by relevance

/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DNotificationCompatHoneycomb.java29 PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon) {
47 .setFullScreenIntent(fullScreenIntent,
26 add(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon) argument
/frameworks/support/v4/ics/android/support/v4/app/
H A DNotificationCompatIceCreamSandwich.java29 PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon,
48 .setFullScreenIntent(fullScreenIntent,
26 add(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int mProgressMax, int mProgress, boolean mProgressIndeterminate) argument
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DStatusBarTest.java165 Intent fullScreenIntent = new Intent(StatusBarTest.this, TestAlertActivity.class);
167 fullScreenIntent.putExtra("id", id);
168 not.fullScreenIntent = PendingIntent.getActivity(
171 fullScreenIntent,
174 not.contentIntent = not.fullScreenIntent;
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java31 PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon,
52 .setFullScreenIntent(fullScreenIntent,
28 NotificationCompatJellybean(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int mProgressMax, int mProgress, boolean mProgressIndeterminate, boolean useChronometer, int priority, CharSequence subText) argument
/frameworks/base/core/java/android/app/
H A DNotification.java176 public PendingIntent fullScreenIntent; field in class:Notification
585 fullScreenIntent = PendingIntent.CREATOR.createFromParcel(parcel);
613 that.fullScreenIntent = this.fullScreenIntent;
737 if (fullScreenIntent != null) {
739 fullScreenIntent.writeToParcel(parcel, 0);
1181 * @see Notification#fullScreenIntent
1592 n.fullScreenIntent = mFullScreenIntent;
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DStorageNotification.java337 mUsbStorageNotification.fullScreenIntent = pi;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java856 } else if (notification.notification.fullScreenIntent != null) {
858 Slog.w(TAG, "Notification has fullScreenIntent and activity is not immersive;"
859 + " sending fullScreenIntent");
861 notification.notification.fullScreenIntent.send();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java906 if (notification.notification.fullScreenIntent != null) {
912 if (DEBUG) Slog.d(TAG, "Notification has fullScreenIntent; sending fullScreenIntent");
914 notification.notification.fullScreenIntent.send();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java1122 if (notification.notification.fullScreenIntent == null) { // TODO(dsandler): consistent logic with add()

Completed in 250 milliseconds