HomeSort by relevance Sort by last modified time
    Searched defs:ForegroundService (Results 1 - 2 of 2) sorted by null

  /external/sl4a/Utils/src/com/googlecode/android_scripting/
ForegroundService.java 25 public abstract class ForegroundService extends Service {
38 public ForegroundService(int id) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ForegroundService.java 49 public class ForegroundService extends Service {
173 Log.i("ForegroundService", "PULSE!");
239 * <p>Example of explicitly starting and stopping the {@link ForegroundService}.
270 Intent intent = new Intent(ForegroundService.ACTION_FOREGROUND);
271 intent.setClass(Controller.this, ForegroundService.class);
278 Intent intent = new Intent(ForegroundService.ACTION_FOREGROUND_WAKELOCK);
279 intent.setClass(Controller.this, ForegroundService.class);
286 Intent intent = new Intent(ForegroundService.ACTION_BACKGROUND);
287 intent.setClass(Controller.this, ForegroundService.class);
294 Intent intent = new Intent(ForegroundService.ACTION_BACKGROUND_WAKELOCK)
    [all...]

Completed in 68 milliseconds