Home
last modified time | relevance | path

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

/development/samples/training/notify-user/src/com/example/android/pingme/
DResultActivity.java39 Intent intent = new Intent(getApplicationContext(), PingService.class); in onSnoozeClick()
45 Intent intent = new Intent(getApplicationContext(), PingService.class); in onDismissClick()
DPingService.java29 public class PingService extends IntentService { class
36 public PingService() { in PingService() method in PingService
75 Intent dismissIntent = new Intent(this, PingService.class); in issueNotification()
79 Intent snoozeIntent = new Intent(this, PingService.class); in issueNotification()
DMainActivity.java35 mServiceIntent = new Intent(getApplicationContext(), PingService.class); in onCreate()