is Airplane Mode Open - Android Phone

Android examples for Phone:Airplane Mode

Description

is Airplane Mode Open

Demo Code


//package com.java2s;

import android.content.Context;

import android.os.Build;
import android.provider.Settings;

public class Main {

    public static boolean isAirplaneModeOpen(Context context) {
        return getAirplaneModeState(context) == 1 ? true : false;
    }/* ww  w.  ja va 2s .com*/

    @SuppressWarnings("deprecation")
    public static int getAirplaneModeState(Context context) {
        if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) {
            return Settings.System.getInt(context.getContentResolver(),
                    Settings.System.AIRPLANE_MODE_ON, 0);
        } else {
            return Settings.Global.getInt(context.getContentResolver(),
                    Settings.Global.AIRPLANE_MODE_ON, 0);
        }
    }
}

Related Tutorials