2016-01-23 118 views
-1

我如何可以切換GPS衛星和關閉(圖標),我並不爲這一個安卓GPS開啓/關閉程序

// automatic turn off the gps 
public void turnGPSOff() 
{ 
    String provider = Settings.Secure.getString(ctx.getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED); 
    if (provider.contains("gps")) // if gps is enabled 
    { 
     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); 
    } 
} 

這一次只禁用GPS衛星尋找,但沒有切換關閉GPS圖標

+0

爲什麼要關閉GPS爲你說的代碼禁用GPS爲你 – Pankaj

+0

道歉不明確關於這個問題,我想要的是類似於無線的代碼WifiManager wifi =(WifiManager)getSystemService(Context.WIFI_SERVICE); wifi.setWifiEnabled(false);實際上可以關閉wifi切換按鈕,但對於GPS,它只允許關閉GPS衛星搜索,而不是通知抽屜上的GPS切換按鈕 – Andrew

回答

1

該圖標由任何應用程序是否正在使用GPS(例如,GPS_PROVIDER已調用requestLocationUpdates())控制。歡迎您控制您的應用程序使用GPS,但否則無法從應用程序影響該圖標。

+0

我很抱歉我的問題不夠清楚,我應該說的是GPS切換按鈕不關閉,我試圖得到一個代碼,可以關閉通知抽屜上的GPS,如關閉無線WifiManager wifi =(WifiManager)getSystemService(Context.WIFI_SERVICE); wifi.setWifiEnabled(false); ,該代碼實際上工作在關閉WIFI切換按鈕 – Andrew

+0

@Andrew:這是啓用或禁用GPS,Android應用程序也無法做到。 – CommonsWare

+0

嗯,我認爲這部分不能繼續下去,它達到了極限,你解決了我的疑問 – Andrew

-1

試試這個公司對我的工作昨天

//Enable GPS 
Intent intent = new Intent("android.location.GPS_ENABLED_CHANGE"); 
intent.putExtra("enabled", true); 
sendBroadcast(intent); 
//Disable GPS 
Intent intent = new Intent("android.location.GPS_ENABLED_CHANGE"); 
intent.putExtra("enabled", false); 
sendBroadcast(intent); 

參考鏈接Answer

+0

我沒有試過這段代碼,但Notification Drawer上的GPS切換按鈕沒有關閉...... – Andrew