Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.*;

public class Main {
    public static boolean isImmediatelyDestroyActivities(Context context) {
        boolean flag = false;
        if (android.provider.Settings.System.getInt(context.getContentResolver(), "always_finish_activities",
                0) != 0)
            flag = true;
        return flag;
    }
}