Home
last modified time | relevance | path

Searched refs:ForegroundService (Results 1 – 2 of 2) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/app/
DForegroundService.java55 public class ForegroundService extends Service { class
183 Intent intent = new Intent(ForegroundService.ACTION_FOREGROUND);
184 intent.setClass(Controller.this, ForegroundService.class);
191 Intent intent = new Intent(ForegroundService.ACTION_FOREGROUND_WAKELOCK);
192 intent.setClass(Controller.this, ForegroundService.class);
199 Intent intent = new Intent(ForegroundService.ACTION_BACKGROUND);
200 intent.setClass(Controller.this, ForegroundService.class);
207 Intent intent = new Intent(ForegroundService.ACTION_BACKGROUND_WAKELOCK);
208 intent.setClass(Controller.this, ForegroundService.class);
216 ForegroundService.class));
[all …]
DForegroundService2.java19 public class ForegroundService2 extends ForegroundService {