Home | History | Annotate | Download | only in app

Lines Matching defs:intents

152         // extras (and other Intents in the array) to be the ones passed in here.
163 // accomplish this, we can build an array of intents to insert the back
165 Intent[] intents = new Intent[4];
170 intents[0] = Intent.makeRestartActivityTask(new ComponentName(this,
174 intents[1] = new Intent(this, com.example.android.apis.ApiDemos.class);
175 intents[1].putExtra("com.example.android.apis.Path", "App");
177 intents[2] = new Intent(this, com.example.android.apis.ApiDemos.class);
178 intents[2].putExtra("com.example.android.apis.Path", "App/Notification");
181 intents[3] = new Intent(this, StatusBarNotifications.class);
186 // extras (and other Intents in the array) to be the ones passed in here.
188 intents, PendingIntent.FLAG_UPDATE_CURRENT);