Latest Android Aptitude Question SOLUTION: What does the flag FLAG_ACTIVITY_NEW_TASK do here? Intent i = new Intent(); i.setAction("com.android.MYACTION"); i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(i); Opti