Android提供了Setting.Secure類,官方對這個類的解釋是用來擷取系統設定屬性值,但不允許修改。需要使用者通過系統UI或者專門的API來設定屬性值。但是在2.2之後,Setting.Secure增加了isLocationProviderEnabled和setLocationProviderEnabled方法,通過測試發現isLocationProviderEnabled方法擷取GPS的狀態的,但是如果修改GPS的狀態:
Settings.Secure.setLocationProviderEnabled( getContentResolver(), LocationManager.GPS_PROVIDER, true);
而且在mainfest檔案中添加了許可權:
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
程式任會報錯:
: Caused by: java.lang.SecurityException: Permission denial: writing to secure settings requires android.permission.WRITE_SECURE_SETTINGS
最終解決辦法如下:
Intent gpsIntent = new Intent();
gpsIntent.setClassName("com.android.settings",
"com.android.settings.widget.SettingsAppWidgetProvider");
gpsIntent.addCategory("android.intent.category.ALTERNATIVE");
gpsIntent.setData(Uri.parse("custom:3"));
try {
PendingIntent.getBroadcast(this, 0, gpsIntent, 0).send();
}
catch (CanceledException e) {
e.printStackTrace();
}
這樣就達到了修改GPS狀態的作用,如果是開發該方法就將GPS關閉,反之依然。
參考:http://www.learningandroid.net/blog/advance/programmable-toggle-gps/
轉自:http://mycoding.iteye.com/blog/1275162