This question already has an answer here:
- android start activity from service 6 answers
i try to use intent in service but when i try this :
Intent intent_facebook = new Intent (this,MainUploadToYoutube.class); intent_facebook.putExtra("vid", vid); startActivity(intent_facebook);
got this error on logcat :
Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?
so i tried this from here :
android start activity from service
Intent intent_facebook = new Intent(getBaseContext(), MainUploadToYoutube.class); intent_facebook.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); getApplication().startActivity( intent_facebook);
but this do nothing and i did not get error in logcat
what wrong ?