Java tutorial
//package com.java2s; //License from project: Open Source License import android.app.Activity; import android.content.Intent; public class Main { public static boolean isSplashOpenedOverNavigationActivity(final Activity act, final Intent intent) { return intent != null && intent.getAction() != null && intent.getAction().equals(Intent.ACTION_MAIN) && !act.isTaskRoot() && intent.hasCategory(Intent.CATEGORY_LAUNCHER); } }