我正在研究我的顶点,我们正在开发一个应用程序,它可以获取用户位置并将其绘制在地图上。我们试图获取每个 x 变量的位置(x 是用户从 5、10、15、30 和 60 分钟的选择中输入的设置)并将最佳位置发送到数据库以供以后共享。应用程序的基本流程是,每次用户打开应用程序时,他们都会看到一张地图,并尽快显示他们当前的位置。然后将该位置发送到数据库以与其他人共享。在他们获得位置后,将启动一个计时器,每隔一段时间再次获得他们的位置,假设他们想要 30 分钟,然后将该位置发送到数据库并再次启动计时器。每次用户访问应用程序时,计时器都需要重置,因为他们将在启动应用程序时立即获取其位置。我遇到的问题是在后台创建一个计时器,该计时器将在不在应用程序中发送到数据库时获取他们的位置。我还想实现这样的逻辑,即在我们获得他们的位置后,我们会在一小段时间内停止侦听更新。
我目前了解 requestLocationUpdates() 方法并已实现它,以便用户访问应用程序时,他们从 GPS 和 NETWORK 获得位置,它的最短时间为 60 秒,距离为 100 英尺或 30.48 米。这也会在用户暂停应用程序时停止,并在用户导航回应用程序时启动。我注意到,尽管我们已经收到了更新,但我们仍然在请求更新。这让我相信 requestLocationUpdates 在侦听更新更改时会继续使用电池寿命。
如何创建此逻辑以在收到位置后停止更新,但在特定时间后开始侦听位置?读取 requestLocationUpdates 的当前 android 方法,minTime 和 minDistance 只是“提示”,但它不服从它们。我需要 locationUpdater 来遵守设置的参数。
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/** Session Creation and Checker */
session = new SessionManagement(getApplicationContext());
// Check if the user is logged in
session.checkLogin();
/** Setup basic session and content view */
// Set the Content View
setContentView(R.layout.activity_main);
/** Start of the MapView Elements */
// extract MapView from layout
mapView = (MapView) findViewById(R.id.mapview);
// Set a mapController
mapController = mapView.getController();
// set the map to have built in zoom controls
mapView.setBuiltInZoomControls(true);
/** Getting the device location */
locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
geoCoder = new Geocoder(this);
isEnabled = locationManager
.isProviderEnabled(LocationManager.GPS_PROVIDER);
// Check if the GPS is enabled
if (!isEnabled) {
alert.showAlertDialog(MainActivity.this, 12);
}
// Retrieve a list of location providers that have fine accuracy, no
// monetary cost, etc
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_HIGH);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setCostAllowed(true);
criteria.setPowerRequirement(Criteria.POWER_LOW);
provider = locationManager.getBestProvider(criteria, true);
// If no suitable provider is found, null is returned.
if (provider != null) {
provider = locationManager.getBestProvider(criteria, false);
BCT = (session.getBCT() * 60000);
// Initialize with last known location
locationManager.requestLocationUpdates(provider, BCT, 31,
locationListener);
// Check the map settings
if (session.isSatellite()) {
SatelliteChecked = true;
mapView.setSatellite(true);
}
if (session.isTraffic()) {
TrafficChecked = true;
mapView.setTraffic(true);
}
} else {
alert.showAlertDialog(getApplicationContext(), 15);
locationManager.removeUpdates(locationListener);
}
}
// Define a listener that responds to location updates
LocationListener locationListener = new LocationListener() {
public void onLocationChanged(Location location) {
// Called when a new location is found by the network location
// provider.
Toast.makeText(getApplicationContext(), location.toString(),
Toast.LENGTH_LONG).show();
}
public void onStatusChanged(String provider, int status, Bundle extras) {
}
public void onProviderEnabled(String provider) {
Toast.makeText(getApplicationContext(), provider.toUpperCase() + " enabled.", Toast.LENGTH_SHORT).show();
}
public void onProviderDisabled(String provider) {
Toast.makeText(getApplicationContext(), provider.toUpperCase() + " disabled.", Toast.LENGTH_SHORT).show();
}
};
@Override
protected void onResume() {
super.onResume();
BCT = (session.getBCT() * 60000);
// when our activity resumes, we want to register for location updates
locationManager.requestLocationUpdates(
provider, BCT, 31, locationListener);
}
@Override
protected void onPause() {
super.onPause();
// when our activity pauses, we want to remove listening for location
// updates
locationManager.removeUpdates(locationListener);
}