我发送了一个发送GPS坐标的POST请求的应用程序,但遗憾的是,有时他发送了3和5甚至1。
所以我不明白为什么多次发送相同的坐标。
//Méthode appelée au démarrage du Service
@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
showNotification();//Appel de la méthode qui créé la barre de Notification
if (monLocationManager != null && monLocationProvider != null) {
//Vérification toutes les 30 secondes (40000 millisecondes ) si la position change
//d'au moins 20 métres. Si c'est le cas, l'écouteur (instance de MajListener)
//va etre averti
monLocationManager.requestLocationUpdates(monLocationProvider, 30000, 20, new MajListener(this));
}
// Si le service est tué il ne redémarrera pas
return Service.START_NOT_STICKY;
}
此外,我相信模拟器我们没有这个问题
谢谢