Home
last modified time | relevance | path

Searched refs:mNotification (Results 1 – 3 of 3) sorted by relevance

/development/samples/Alarm/src/com/example/android/newalarm/
DAlarmService.java74 Notification mNotification; field in AlarmService
185 mNotification = new Notification( in showNotification()
201 mNotification.setLatestEventInfo( in showNotification()
213 mNotification // the mNotification object in showNotification()
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
DMusicService.java153 Notification mNotification = null; field in MusicService
519 mNotification.setLatestEventInfo(getApplicationContext(), "RandomMusicPlayer", text, pi); in updateNotification()
520 mNotificationManager.notify(NOTIFICATION_ID, mNotification); in updateNotification()
532 mNotification = new Notification(); in setUpAsForeground()
533 mNotification.tickerText = text; in setUpAsForeground()
534 mNotification.icon = R.drawable.ic_stat_playing; in setUpAsForeground()
535 mNotification.flags |= Notification.FLAG_ONGOING_EVENT; in setUpAsForeground()
536 mNotification.setLatestEventInfo(getApplicationContext(), "RandomMusicPlayer", in setUpAsForeground()
538 startForeground(NOTIFICATION_ID, mNotification); in setUpAsForeground()
/development/samples/Alarm/tests/src/com/example/android/newalarm/
DAlarmServiceTest.java83 assertNotNull(mService.mNotification); in testServiceCreate()