Searched defs:EXTRA_COLORIZED (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/compat/tests/java/android/support/v4/app/
H A DNotificationCompatTest.java57 private static final String EXTRA_COLORIZED = "android.colorized"; field in class:NotificationCompatTest
140 assertTrue(Boolean.TRUE.equals(extras.get(EXTRA_COLORIZED)));
149 assertTrue(Boolean.FALSE.equals(extras.get(EXTRA_COLORIZED)));
158 assertFalse(extras.containsKey(EXTRA_COLORIZED));
/frameworks/base/core/java/android/app/
H A DNotification.java1081 public static final String EXTRA_COLORIZED = "android.colorized"; field in class:Notification
3455 mN.extras.putBoolean(EXTRA_COLORIZED, colorize);
4469 Boolean colorized = (Boolean) mN.extras.get(EXTRA_COLORIZED);
4470 mN.extras.putBoolean(EXTRA_COLORIZED, false);
4477 mN.extras.putBoolean(EXTRA_COLORIZED, colorized);
4479 mN.extras.remove(EXTRA_COLORIZED);
5246 return extras.getBoolean(EXTRA_COLORIZED)
5266 Boolean colorized = (Boolean) extras.get(EXTRA_COLORIZED);
5271 if (extras.getBoolean(EXTRA_COLORIZED) && hasMediaSession()) {

Completed in 95 milliseconds