Here the below code is used to start activity from the service in android
Intent newIntent = new Intent(getBaseContext( ),nextActivity.class);
newIntent .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getApplication().startActivity(newIntent);
Intent newIntent = new Intent(getBaseContext( ),nextActivity.class);
newIntent .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getApplication().startActivity(newIntent);
No comments:
Post a Comment