8

我正在尝试在装有 Android 4.2.2 的 Nexus 4 中设置飞行模式。我知道这是不可能的,因为 AIRPLANE_MODE_ON 已移至全局系统设置,它只是一个读取选项。

有没有其他方法可以做类似的事情,我的意思是禁用收音机?我可以禁用蓝牙、wifi 和 Internet 连接,但电话网络仍处于活动状态。

是否可以使用NDK创建一个库以完全禁用网络?

编辑:我尝试过使用java.lang.reflect这种方法:

@SuppressLint("NewApi")
@SuppressWarnings("rawtypes")
private boolean putStringAirplaneMode() throws ClassNotFoundException,
        NoSuchMethodException, IllegalArgumentException,
        IllegalAccessException, InvocationTargetException {

    ContentResolver resolver = context.getContentResolver();
    String name = Settings.Global.AIRPLANE_MODE_ON;
    String value = (isEnabled() ? "1" : "0");
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
        Log.v("AirplaneBatterySaver",
                "Using reflection to change airplane mode");
        // For JELLY_BEAN_MR1 use reflection. TODO test if works reflection
        Class SystemProperties = android.provider.Settings.Global.class;

        Class[] parameterTypes = new Class[3];
        parameterTypes[0] = ContentResolver.class;
        parameterTypes[1] = String.class;
        parameterTypes[2] = String.class;

        @SuppressWarnings("unchecked")
        Method method = SystemProperties.getMethod("putString",
                parameterTypes);

        method.setAccessible(true);
        return (Boolean) method.invoke(new Object(), resolver, name, value);
        // return Settings.Global.putString(resolver, name, value);

    } else {
        Log.v("AirplaneBatterySaver",
                "Using Settings.System to change airplane mode");
        return Settings.System.putString(resolver, name, value);
    }
}

如您所见,我替换了该方法Settings.System.putString(resolver, name, value);JELLY_BEAN_MR1但是,当然,我得到了一个SecurityException,因为我的应用程序不是系统应用程序。这是跟踪:

Caused by: java.lang.SecurityException: Permission denial: writing to secure 
    settings requires android.permission.WRITE_SECURE_SETTINGS
at android.os.Parcel.readException(Parcel.java:1425)
at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:185)
at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:137)
at android.content.ContentProviderProxy.call(ContentProviderNative.java:574)
at android.provider.Settings$NameValueCache.putStringForUser(Settings.java:777)
at android.provider.Settings$Global.putStringForUser(Settings.java:5421)
at android.provider.Settings$Global.putString(Settings.java:5411)

如果我使用<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>我得到错误Permission is only granted to system apps。我正在检查 SDK 源(在来自跟踪的文件中),试图找到一种在没有此权限的情况下设置飞行模式的方法,但我没有取得任何成功。

4

1 回答 1

5

从 4.2.2 开始,您无法切换飞行模式,因为它是只读的。

你有两个选择。

  1. 使您的应用程序成为System应用程序。即 Root 手机,将您的 APK 推送到/system/app并从那里安装。这将使您能够切换飞行模式。
  2. 用于Reflection获取切换飞行模式的 Android 系统函数调用。

您应该获取有关如何使用反射来获取公开 API 的代码示例,否则不会通过 SDK 向开发人员公开。

于 2013-04-23T01:29:33.330 回答