如何在Android版4.3 rooted设备中禁用飞行模式?

时间:2013-10-25 10:23:49

标签: android

我一直在根植设备版本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中关闭飞行模式,请告诉我吗?

0 个答案:

没有答案
相关问题