안드로이드 개발 질문/답변
(글 수 44,487)
앱 실행시에 전화 수신 및 문자메시지를 차단하고 싶은데 이것이 가능할까요?
아니면 항공기 탑승모드로 변환시킬수 있는 방법도 궁금합니다.
걸려온 전화는 부재중통화로 남아도 좋고 않남아도 좋습니다.
고수 및 경험자분의 따뜻한 댓글 부탁합니다
Tweet








/* * 항공기 탑승모드 상태를 리턴 */ private boolean isAirplaneModeOn(Context context) { return Settings.System.getInt(context.getContentResolver(),Settings.System.AIRPLANE_MODE_ON, 0) != 0; }/* * 항공기 탑승모드상태 를 설정 */ private void setAirplaneMode(Context context, boolean status) { boolean isAirplaneModeOn = isAirplaneModeOn(context); if (isAirplaneModeOn == status) { return; } if (isAirplaneModeOn && !status) { Settings.System.putInt(context.getContentResolver(), Settings.System.AIRPLANE_MODE_ON, 0); Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED); intent.putExtra("state", 0); context.sendBroadcast(intent); return; } if (!isAirplaneModeOn && status) { Settings.System.putInt(context.getContentResolver(), Settings.System.AIRPLANE_MODE_ON, 1); Intent intent = new Intent (Intent.ACTION_AIRPLANE_MODE_CHANGED); intent.putExtra("state", 1); context.sendBroadcast(intent); return; } }자답입니다. 항공기 탑승모드로 변경하는 소스코드 입니다.