How to set the AIRPLANE_MODE_ON to “True” or ON?

后端 未结 3 1012
鱼传尺愫
鱼传尺愫 2020-11-27 16:53

I am planning to drop a call and I find this as one of workaround for that. How do I activate the airplane mode via code?

This way I will drop the call based on so

3条回答
  •  旧时难觅i
    2020-11-27 17:29

    See the blog article Android: Controlling Airplane Mode ,

    Works only upto API 16

    // Toggle airplane mode.
    Settings.System.putInt(
          context.getContentResolver(),
          Settings.System.AIRPLANE_MODE_ON, isEnabled ? 0 : 1);
    
    // Post an intent to reload.
    Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
    intent.putExtra("state", !isEnabled);
    sendBroadcast(intent);
    

    where isEnabled is whether airplane mode is enabled or not.

提交回复
热议问题