Home
last modified time | relevance | path

Searched refs:startIntent (Results 1 – 4 of 4) sorted by relevance

/development/samples/ApiDemos/tests/src/com/example/android/apis/app/
DLocalServiceTest.java65 Intent startIntent = new Intent(); in testStartable() local
66 startIntent.setClass(getContext(), LocalService.class); in testStartable()
67 startService(startIntent); in testStartable()
75 Intent startIntent = new Intent(); in testBindable() local
76 startIntent.setClass(getContext(), LocalService.class); in testBindable()
77 IBinder service = bindService(startIntent); in testBindable()
/development/samples/browseable/DelayedConfirmation/Wearable/src/com.example.android.wearable.delayedconfirmation/
DWearableMessageListenerService.java33 Intent startIntent = new Intent(this, MainActivity.class); in onMessageReceived() local
34 startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onMessageReceived()
35 startActivity(startIntent); in onMessageReceived()
/development/samples/browseable/DataLayer/Wearable/src/com.example.android.wearable.datalayer/
DDataLayerListenerService.java99 Intent startIntent = new Intent(this, MainActivity.class); in onMessageReceived() local
100 startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onMessageReceived()
101 startActivity(startIntent); in onMessageReceived()
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
DMyRssReader5.java202 Intent startIntent = new Intent(RssService.class); in onActivityResult() local
203 startIntent.putExtras(startupVals); in onActivityResult()
204 startService(startIntent); in onActivityResult()