Android 利用程式實現GPS的開啟或關閉

來源:互聯網
上載者:User

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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.