Android examples for App:App Running
is Launchable App
//package com.java2s; import android.content.Context; import android.content.pm.ApplicationInfo; public class Main { public static boolean isLaunchableApp(Context context, ApplicationInfo applicationInfo) { return !((applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0 || context .getPackageManager().getLaunchIntentForPackage( applicationInfo.packageName) == null); }/*from www . j av a 2s.co m*/ }