비행기모드1 [안드로이드] 비행기모드 및 유심, 로밍 확인하기 안녕하세요 푸민입니다. 저번 포스팅에 네트워크 상태 체크하는 것에 이어 이번에는 비행기모드와 로밍상태를 확인해 볼까요 먼저 비행기 모드 확인은 코드 int result;try {if (android.os.Build.VERSION.SDK_INT > 16){result = Settings.Global.getInt(context.getContentResolver(), Settings.Global.AIRPLANE_MODE_ON);}else{result = Settings.System.getInt(context.getContentResolver(), Settings.System.AIRPLANE_MODE_ON);}if(result != 0){//여기가 비행기모드}else{//비행기모드 아님 }} catch (Exc.. 2015. 9. 4. 이전 1 다음