我一直在努力在有根设备版本 4.3 中关闭飞行模式(如果飞行模式处于开启状态)。以下代码在 android 版本 4.3 中不起作用。直到 4.2 版都可以正常工作。
Settings.Global.putInt(context.getContentResolver(),
"airplane_mode_on", 0);
isAirplaneModeOn = isAirplaneModeOn(context);
Intent localIntent2 = new Intent(
"android.intent.action.AIRPLANE_MODE");
localIntent2.putExtra("state", isAirplaneModeOn);
context.sendBroadcast(localIntent2);
请让我知道是否有人有任何想法/代码可以在根设备版本 4.3 中关闭飞行模式?