Java Code Examples for android.content.Intent#makeRestartActivityTask()

The following examples show how to use android.content.Intent#makeRestartActivityTask() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AppUtils.java    From Android-utils with Apache License 2.0 5 votes vote down vote up
/**
 * Relaunch current app
 */
public static void relaunchApp() {
    Intent i = IntentUtils.getLaunchAppIntent(UtilsApp.getApp().getPackageName(), false);
    if (i == null) return;
    ComponentName cn = i.getComponent();
    Intent ii = Intent.makeRestartActivityTask(cn);
    UtilsApp.getApp().startActivity(ii);
    System.exit(0);
}
 
Example 2
Source File: SkyTubeApp.java    From SkyTube with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Restart the app.
 */
public static void restartApp() {
	Context context = getContext();
	PackageManager packageManager = context.getPackageManager();
	Intent intent = packageManager.getLaunchIntentForPackage(context.getPackageName());
	ComponentName componentName = intent.getComponent();
	Intent mainIntent = Intent.makeRestartActivityTask(componentName);
	context.startActivity(mainIntent);
	System.exit(0);
}
 
Example 3
Source File: StatusBarNotifications.java    From codeexamples-android with Eclipse Public License 1.0 5 votes vote down vote up
private PendingIntent makeDefaultIntent() {
    // A typical convention for notifications is to launch the user deeply
    // into an application representing the data in the notification; to
    // accomplish this, we can build an array of intents to insert the back
    // stack stack history above the item being displayed.
    Intent[] intents = new Intent[4];

    // First: root activity of ApiDemos.
    // This is a convenient way to make the proper Intent to launch and
    // reset an application's task.
    intents[0] = Intent.makeRestartActivityTask(new ComponentName(this,
            com.example.android.apis.ApiDemos.class));

    // "App"
    intents[1] = new Intent(this, com.example.android.apis.ApiDemos.class);
    intents[1].putExtra("com.example.android.apis.Path", "App");
    // "App/Notification"
    intents[2] = new Intent(this, com.example.android.apis.ApiDemos.class);
    intents[2].putExtra("com.example.android.apis.Path", "App/Notification");

    // Now the activity to display to the user.
    intents[3] = new Intent(this, StatusBarNotifications.class);

    // The PendingIntent to launch our activity if the user selects this
    // notification.  Note the use of FLAG_UPDATE_CURRENT so that if there
    // is already an active matching pending intent, we will update its
    // extras (and other Intents in the array) to be the ones passed in here.
    PendingIntent contentIntent = PendingIntent.getActivities(this, 0,
            intents, PendingIntent.FLAG_UPDATE_CURRENT);
    return contentIntent;
}
 
Example 4
Source File: j.java    From MiBandDecompiled with Apache License 2.0 4 votes vote down vote up
public static Intent b(ComponentName componentname)
{
    return Intent.makeRestartActivityTask(componentname);
}
 
Example 5
Source File: IntentCompatHoneycomb.java    From CodenameOne with GNU General Public License v2.0 4 votes vote down vote up
public static Intent makeRestartActivityTask(ComponentName mainActivity) {
    return Intent.makeRestartActivityTask(mainActivity);
}
 
Example 6
Source File: IntentCompatHoneycomb.java    From adt-leanback-support with Apache License 2.0 4 votes vote down vote up
public static Intent makeRestartActivityTask(ComponentName mainActivity) {
    return Intent.makeRestartActivityTask(mainActivity);
}
 
Example 7
Source File: IntentCompatHoneycomb.java    From V.FlyoutTest with MIT License 4 votes vote down vote up
public static Intent makeRestartActivityTask(ComponentName mainActivity) {
    return Intent.makeRestartActivityTask(mainActivity);
}
 
Example 8
Source File: IntentCompatHoneycomb.java    From guideshow with MIT License 4 votes vote down vote up
public static Intent makeRestartActivityTask(ComponentName mainActivity) {
    return Intent.makeRestartActivityTask(mainActivity);
}