HomeSort by relevance Sort by last modified time
    Searched refs:startServiceIntent (Results 1 - 7 of 7) sorted by null

  /developers/build/prebuilts/gradle/JobScheduler/kotlinApp/app/src/main/java/com/example/android/jobscheduler/
MainActivity.kt 88 val startServiceIntent = Intent(this, MyJobService::class.java)
90 startServiceIntent.putExtra(MESSENGER_INTENT_KEY, messengerIncoming)
91 startService(startServiceIntent)
  /developers/samples/android/background/JobScheduler/kotlinApp/app/src/main/java/com/example/android/jobscheduler/
MainActivity.kt 88 val startServiceIntent = Intent(this, MyJobService::class.java)
90 startServiceIntent.putExtra(MESSENGER_INTENT_KEY, messengerIncoming)
91 startService(startServiceIntent)
  /developers/build/prebuilts/gradle/JobScheduler/Application/src/main/java/com/example/android/jobscheduler/
MainActivity.java 114 Intent startServiceIntent = new Intent(this, MyJobService.class);
116 startServiceIntent.putExtra(MESSENGER_INTENT_KEY, messengerIncoming);
117 startService(startServiceIntent);
  /developers/samples/android/background/JobScheduler/Application/src/main/java/com/example/android/jobscheduler/
MainActivity.java 114 Intent startServiceIntent = new Intent(this, MyJobService.class);
116 startServiceIntent.putExtra(MESSENGER_INTENT_KEY, messengerIncoming);
117 startService(startServiceIntent);
  /development/samples/browseable/JobScheduler/src/com.example.android.jobscheduler/
MainActivity.java 114 Intent startServiceIntent = new Intent(this, MyJobService.class);
116 startServiceIntent.putExtra(MESSENGER_INTENT_KEY, messengerIncoming);
117 startService(startServiceIntent);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowApplicationTest.java 406 Intent startServiceIntent = new Intent().setComponent(componentName);
408 ComponentName startedComponent = activity.startService(startServiceIntent);
418 assertThat(nextStoppedService.filterEquals(startServiceIntent)).isTrue();
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
AndroidFacade.java 742 public void startServiceIntent(
    [all...]

Completed in 362 milliseconds