我已經創建了一個應用,使用LocationListener和GPS在Google地圖上顯示用戶位置。我試圖在用戶從應用程序導航離開時關閉GPS,但我嘗試的所有內容都不起作用,我仍然可以在屏幕頂部看到GPS圖標處於活動狀態。目前我有:如何在不使用Android應用時停止GPS
@Override
protected void onPause() {
super.onPause();
// Turning off
locationManager.removeUpdates(locationListener);
locationManager = null;
}
幫助請:(
Sorted it! Twins onResume。 – Paul 2011-06-16 20:48:00