Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.Intent; public class Main { /** * "Exits" the app to the Home screen". * @param context Application context */ public static void exitToHome(final Context context) { Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_HOME); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(intent); } }