Home
last modified time | relevance | path

Searched refs:Controller (Results 1 – 11 of 11) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/app/
DForegroundService.java92 new Intent(this, Controller.class), 0); in onStartCommand()
155 public static class Controller extends Activity { class in ForegroundService
184 intent.setClass(Controller.this, ForegroundService.class);
192 intent.setClass(Controller.this, ForegroundService.class);
200 intent.setClass(Controller.this, ForegroundService.class);
208 intent.setClass(Controller.this, ForegroundService.class);
215 stopService(new Intent(Controller.this,
223 intent.setClass(Controller.this, ForegroundService2.class);
230 final Context ctx = Controller.this;
246 stopService(new Intent(Controller.this,
DServiceStartArguments.java111 mInvokeIntent = new Intent(this, Controller.class); in onCreate()
179 new Intent(this, Controller.class), 0); in showNotification()
210 public static class Controller extends Activity { class in ServiceStartArguments
232 startService(new Intent(Controller.this,
240 startService(new Intent(Controller.this,
248 startService(new Intent(Controller.this,
257 startService(new Intent(Controller.this,
DLocalServiceActivities.java45 public static class Controller extends Activity { class in LocalServiceActivities
66 startService(new Intent(Controller.this,
76 stopService(new Intent(Controller.this,
DMessengerService.java38 import com.example.android.apis.app.RemoteService.Controller;
154 new Intent(this, Controller.class), 0); in showNotification()
DLocalService.java105 new Intent(this, LocalServiceActivities.Controller.class), 0); in showNotification()
DNotificationBackgroundService.java56 public static class Controller extends Activity { class in NotificationBackgroundService
DRemoteService.java195 new Intent(this, Controller.class), 0); in showNotification()
223 public static class Controller extends Activity { class in RemoteService
244 startService(new Intent(Controller.this, RemoteService.class));
253 stopService(new Intent(Controller.this, RemoteService.class));
DIsolatedService.java105 public static class Controller extends Activity { class in IsolatedService
/development/samples/browseable/WearNotifications/Wearable/src/com.example.android.wearable.wear.wearnotifications/
DController.java11 public class Controller { class
15 Controller(StandaloneMainActivity standaloneMainActivity) { in Controller() method in Controller
DCustomRecyclerAdapter.java41 private Controller mController;
61 public CustomRecyclerAdapter(String[] dataSet, Controller controller) { in CustomRecyclerAdapter()
DStandaloneMainActivity.java111 new Controller(this)); in onCreate()