如何检测应用程序是否已关闭

时间:2015-11-20 03:19:07

标签: android android-intent broadcastreceiver android-broadcast

我的应用程序从Broadcastreceiver接收,以便在我的应用程序运行时从网络(json)获取新数据;一切运行良好,当应用程序关闭时,它崩溃“你的应用程序停止工作”。即使以下好的检查我的应用程序是否在前台也不起作用。 我想要它,所以如果应用程序关闭,而不是运行,调用打开应用程序的意图,它不会崩溃,那么如何检查应用程序是否已关闭?

我的代码;

public class UpdateReceiver extends BroadcastReceiver {

private static long alarmTime = 0;

@Override
public void onReceive(Context context, Intent intent) {



    if (isAppForground(context)){
        Toast.makeText(context, "APP IN FOREGROUND", Toast.LENGTH_LONG).show();
    } else {
        Intent intentActivity = new Intent(context, MainActivity.class);
        intentActivity.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(intentActivity);
        Toast.makeText(context, "APP NOT RUNNING", Toast.LENGTH_LONG).show();
    }

    //set new alarm for next tuesday
    UpcomingFragment.getInstance().setAlarm(-1);
    //updates the current json
    UpcomingFragment.getInstance().update();


}

public static long getAlermTimeInMillis(){
    return alarmTime;
}

public boolean isAppForground(Context mContext) {

    ActivityManager am = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
    List<ActivityManager.RunningTaskInfo> tasks = am.getRunningTasks(1);
    if (!tasks.isEmpty()) {
        ComponentName topActivity = tasks.get(0).topActivity;
        if (!topActivity.getPackageName().equals(mContext.getPackageName())) {
            return false;
        }
    }

    return true;
}

}

1 个答案:

答案 0 :(得分:3)

我有完全相同的问题,我坚持了。幸运的是,在第3天,我发现了一个有效的解决方案。

public void onTrimMemory(final int level) {
    if (level == ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
        //SCREEN IS NOT SHOWING
}

onTrimMemory方法非常有用。它应该用于在内存中优化你的应用程序,但我们也可以像这样使用它!