Android calling startActivity() from outside of an Activity context

https://‮ttual.www‬uri.com
Android calling startActivity() from outside of an Activity context

Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag:

myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

OR

Intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
Created Time:2017-09-01 22:34:37  Author:lautturi