程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> gps-在android4.0中開啟GPS

gps-在android4.0中開啟GPS

編輯:編程綜合問答
在android4.0中開啟GPS

我的應用中要開啟GPS,一直到android2.3.6版本都運行正常。但是到了android4.0版本以後,就不行了。

不知道為什麼?在高版本裡應該怎麼設置呢?

謝謝

最佳回答:


試試下面的代碼:

public void turnGPSOn()
{
     Intent intent = new Intent("android.location.GPS_ENABLED_CHANGE");
     intent.putExtra("enabled", true);
     this.ctx.sendBroadcast(intent);

    String provider = Settings.Secure.getString(ctx.getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
    if(!provider.contains("gps")){ //if gps is disabled
        final Intent poke = new Intent();
        poke.setClassName("com.android.settings", "com.android.settings.widget.SettingsAppWidgetProvider"); 
        poke.addCategory(Intent.CATEGORY_ALTERNATIVE);
        poke.setData(Uri.parse("3")); 
        this.ctx.sendBroadcast(poke);
    }
}
loFataMer
shen332401890
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved