2013-01-20 100 views
2

我對此進行了搜索,並提供了有關使用Power Manager Bug來解決此問題的解決方案。但是現在這個錯誤已經解決了。那麼現在我怎麼才能解決這個應用程序啓動時啓動GPS的問題? 請幫忙。自動開啓全球定位系統

+0

嘗試使用我發佈的解決方案。 –

回答

2

使用此功能:

private void turnGPSOn(){ 
    String provider = Settings.Secure.getString(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")); 
     sendBroadcast(poke); 
    } 
} 

撥打電話從你的activityonCreate()方法此功能。

OR:

Intent intent=new Intent("android.location.GPS_ENABLED_CHANGE"); 
intent.putExtra("enabled", true); 
sendBroadcast(intent); 

感謝。

+0

謝謝......但它不工作。 – skjindal93

+0

@ skjindal93你在用設備測試嗎?哪個os? –

+0

是的,我正在用設備進行測試。 Android 2.3.6 – skjindal93

相關問題