posted by 네코냥이 2014. 7. 28. 16:00



Turning ON or OFF airplane mode programmatically in Android _ yogeshblogspot.pdf



==================================================================================


private Boolean isAirModeOn() {

Boolean bol;

if(Build.VERSION.SDK_INT<17){

bol = Settings.System.getInt(context.getContentResolver(), Settings.System.AIRPLANE_MODE_ON, 0) == 1;

}else{

bol = Settings.System.getInt(context.getContentResolver(), Settings.Global.AIRPLANE_MODE_ON, 0) == 1;

}

return bol;

}


==================================================================================