JAVA/Android
[안드로이드] 비행기 모드 확인
네코냥이
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;
}
==================================================================================