我一直在根植设备版本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);
如果有人知道/代码在root设备版本4.3中关闭飞行模式,请告诉我吗?