My Activity implements LocationListener as below
public class LoginActivity extends Activity implements LocationListener {}
我的所在地点 管理人员如下:
mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
mlocManager.requestLocationUpdates( LocationManager.GPS_PROVIDER, MINIMUM_TIME_BETWEEN_UPDATES, MINIMUM_DISTANCE_CHANGE_FOR_UPDATES, this);
我可以采用这种方法找到目前的全球定位系统位置。
Now I need to release the GPS when the Activity closes.
因此,我使用的方法如下。
@Override
protected void onPause() {
mlocManager.removeUpdates(this);
//System.exit(0);
super.onPause();
}
但是,这并没有释放全球定位系统。 一个人能够帮助我。 提前感谢。