Java/Android
87_안드로이드 비행기 모드 바뀔 때
우오우어아오앙
2017. 11. 1. 18:24
728x90
SMALL
비행기 모드 상태 변화 알아오기
ACTION_AIRPLANE_MODE_CHANGED액션을 리시버가 받아온다!!
public class AirPlaneReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
switch (action) {
case Intent.ACTION_AIRPLANE_MODE_CHANGED:
Boolean airplane = android.provider.Settings.Global.getInt(context.getContentResolver(), android.provider.Settings.Global.AIRPLANE_MODE_ON, 0) == 1;
break;
}
}
}
매니페스트에도 등록해준다
<receiver android:name=".AirPlaneReceiver">
<intent-filter>
<action android:name="android.intent.action.AIRPLANE_MODE"/>
</intent-filter>
</receiver>
728x90
반응형
LIST