如何禁用android版本4.3 rooted设备中的飞行模式?
我一直在努力关闭固定设备版本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中的飞行模式?
链接地址: http://www.djcxy.com/p/90935.html上一篇: How to disable the airplane mode in android version 4.3 rooted device?
下一篇: Capture image without intent, Gives different output on different devices