Searched refs:startIntent (Results 1 – 4 of 4) sorted by relevance
65 Intent startIntent = new Intent(); in testStartable() local66 startIntent.setClass(getContext(), LocalService.class); in testStartable()67 startService(startIntent); in testStartable()75 Intent startIntent = new Intent(); in testBindable() local76 startIntent.setClass(getContext(), LocalService.class); in testBindable()77 IBinder service = bindService(startIntent); in testBindable()
33 Intent startIntent = new Intent(this, MainActivity.class); in onMessageReceived() local34 startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onMessageReceived()35 startActivity(startIntent); in onMessageReceived()
99 Intent startIntent = new Intent(this, MainActivity.class); in onMessageReceived() local100 startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onMessageReceived()101 startActivity(startIntent); in onMessageReceived()
202 Intent startIntent = new Intent(RssService.class); in onActivityResult() local203 startIntent.putExtras(startupVals); in onActivityResult()204 startService(startIntent); in onActivityResult()