Android troubleshooting

From Proj3ctWiki
Jump to: navigation, search

Impossible de lancer une Activity, à partir d'un BroadcastReceiver

... ERROR/AndroidRuntime(718): Caused by: android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity  context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?

Définir le flag spécifique :

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Personal tools