我使用此代码获取 gps 传感器数据。
mlocManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
mlocListener = new MyLocationListener();
mlocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 2000, 1, mlocListener);
为什么我的 gps 图标会不停地打开和关闭?