2

生根并请求超级用户权限后,我需要做什么才能在我的应用程序中启用/禁用 gps?

4

3 回答 3

2

ON Rooted Device 试试这个,只需使用 su 在高精度模式下启用 gps

 Process proc=Runtime.getRuntime().exec(new String[]{"su",
"pm grant com.your_app_packagename android.permission.WRITE_SECURE_SETTINGS",
"settings put secure location_providers_allowed gps,network,wifi"});
 proc.waitFor();

在后台线程上运行这些命令:)

此外,您可以在此处参考此链接

于 2016-03-16T10:09:27.157 回答
1

您不应该保护用户的隐私。但是,可以通过利用错误来实现。看这个如何:

如何在 Android 上以编程方式启用或禁用 GPS?

请注意,这可能不适用于所有版本的 Android - 请参阅
https://android.googlesource.com/platform/packages/apps/Settings/+/4b21f7cd9424eeb83838071a4419912ee5d5e41d

他们指出它已被修复但我不确定哪些版本有修复(如果有的话)。

于 2011-05-22T00:40:11.013 回答
1

如果应用程序移至,则此代码适用于ROOTED手机,并且它们在清单中具有以下权限 /system/aps

<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>

代码

private void turnGpsOn (Context context) {
    beforeEnable = Settings.Secure.getString (context.getContentResolver(),
                                              Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
    String newSet = String.format ("%s,%s",
                                   beforeEnable,
                                   LocationManager.GPS_PROVIDER);
    try {
        Settings.Secure.putString (context.getContentResolver(),
                                   Settings.Secure.LOCATION_PROVIDERS_ALLOWED,
                                   newSet); 
    } catch(Exception e) {}
}


private void turnGpsOff (Context context) {
    if (null == beforeEnable) {
        String str = Settings.Secure.getString (context.getContentResolver(),
                                                Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
        if (null == str) {
            str = "";
        } else {                
            String[] list = str.split (",");
            str = "";
            int j = 0;
            for (int i = 0; i < list.length; i++) {
                if (!list[i].equals (LocationManager.GPS_PROVIDER)) {
                    if (j > 0) {
                        str += ",";
                    }
                    str += list[i];
                    j++;
                }
            }
            beforeEnable = str;
        }
    }
    try {
        Settings.Secure.putString (context.getContentResolver(),
                                   Settings.Secure.LOCATION_PROVIDERS_ALLOWED,
                                   beforeEnable);
    } catch(Exception e) {}
}
于 2017-05-16T04:33:41.790 回答