當我開始通過是否應用於foregroud?
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory("android.intent.category.LAUNCHER");
intent.setComponent(new ComponentName("com.app.app", "com.app.app.Main"));
startActivity(intent);
ActivityManager activityManager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
List<RunningAppProcessInfo> runningProcInfo = activityManager.getRunningAppProcesses();
Log.e("TAG", "runningProcInfo.get(0).processName "+runningProcInfo.get(0).processName);
而且我回家的應用程序包
有什麼錯我的代碼從另一個應用程序?
那麼,如何檢查我的應用程序在後臺?提前致謝。 – drifter
請參閱[本討論](http://stackoverflow.com/questions/2166961/determining-the-current-foreground-application-from-a-background-task-or-service)。 –