OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dismissIntent
(Results
1 - 2
of
2
) sorted by null
/development/samples/training/notify-user/src/com/example/android/pingme/
PingService.java
75
Intent
dismissIntent
= new Intent(this, PingService.class);
76
dismissIntent
.setAction(CommonConstants.ACTION_DISMISS);
77
PendingIntent piDismiss = PendingIntent.getService(this, 0,
dismissIntent
, 0);
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchService.java
239
Intent
dismissIntent
= new Intent(context, StopwatchService.class);
240
dismissIntent
.setAction(Stopwatches.RESET_STOPWATCH);
246
.setDeleteIntent(PendingIntent.getService(context, 0,
dismissIntent
, 0))
Completed in 153 milliseconds