Home
last modified time | relevance | path

Searched refs:NotificationPreset (Results 1 – 6 of 6) sorted by relevance

/development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
DNotificationPresets.java42 public static final NotificationPreset BASIC = new BasicNotificationPreset();
43 public static final NotificationPreset STYLIZED_TEXT = new StylizedTextNotificationPreset();
44 public static final NotificationPreset INBOX = new InboxNotificationPreset();
45 public static final NotificationPreset BIG_PICTURE = new BigPictureNotificationPreset();
46 public static final NotificationPreset BIG_TEXT = new BigTextNotificationPreset();
47 public static final NotificationPreset BOTTOM_ALIGNED = new BottomAlignedNotificationPreset();
48 public static final NotificationPreset GRAVITY = new GravityNotificationPreset();
49 public static final NotificationPreset CONTENT_ACTION = new ContentActionNotificationPreset();
50 public static final NotificationPreset CONTENT_ICON = new ContentIconNotificationPreset();
51 public static final NotificationPreset MULTIPLE_PAGE = new MultiplePageNotificationPreset();
[all …]
DNotificationPreset.java25 public abstract class NotificationPreset extends NamedPreset { class
29 public NotificationPreset(int nameResId, int titleResId, int textResId) { in NotificationPreset() method in NotificationPreset
DMainActivity.java82 NotificationPreset preset = NotificationPresets.PRESETS[ in onCreate()
172 private void updateTextEditors(NotificationPreset preset) { in updateTextEditors()
218 NotificationPreset preset = NotificationPresets.PRESETS[ in postNotifications()
232 NotificationPreset.BuildOptions options = new NotificationPreset.BuildOptions( in postNotifications()
268 NotificationPreset preset = NotificationPresets.PRESETS[position]; in onItemSelected()
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
DNotificationPreset.java25 public abstract class NotificationPreset { class
28 public NotificationPreset(int nameResId) { in NotificationPreset() method in NotificationPreset
DNotificationPresets.java44 public static final NotificationPreset[] PRESETS = new NotificationPreset[] {
63 private static class BasicPreset extends NotificationPreset {
109 private static class StylizedTextPreset extends NotificationPreset {
166 private static class DisplayIntentPreset extends NotificationPreset {
185 private static class MultiSizeDisplayIntentPreset extends NotificationPreset {
261 private static class AnimatedDisplayIntentPreset extends NotificationPreset {
280 private static class ContentIconPreset extends NotificationPreset {
DMainActivity.java63 NotificationPreset preset = NotificationPresets.PRESETS[presetIndex]; in updateNotification()