Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.Intent; public class Main { /** * Minimizes the app * @param context the context */ public static void minimizeApp(Context context) { Intent startMain = new Intent(Intent.ACTION_MAIN); startMain.addCategory(Intent.CATEGORY_HOME); startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(startMain); } }