1

我已经知道如何使用以下方法获取用户的当前位置:

locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 10, 500, locationListener)

但是,在 Android 的后台运行位置更新时通常需要哪些步骤?

我必须让整个应用程序在 GPS 开启的情况下在后台运行吗?

我基本上想定期将用户的纬度经度发送回我们的服务器,如果不是在计时器上,那么例如当移动超过 25m 时。

我也不想杀死电池,因为持续使用 GPS 是臭名昭著的。

有任何想法吗?

4

4 回答 4

4

我建议您创建一个扩展类Service,该服务将在后台运行。这是一个示例,它将 GPS 数据存储在 SQLite 数据库中。这可能会为您指明正确的方向。

于 2012-10-18T14:08:15.977 回答
2

您可以使用蜂窝网络在特定时间间隔内 ping 用户的地理数据吗?一旦您发现位置已经改变了某个变量,您就可以激活 GPS 并获取准确的坐标以发送回您的服务器。完成后请记住停止接收位置更新(出于明显的电池耗尽原因。)

locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);

蜂窝网络精确到 50m,因此可以满足您对重复 ping 的需求——在准确性和电池寿命之间进行一些折衷。

于 2012-10-18T14:29:38.487 回答
1

我用来在后台将我的位置更新到我的本地主机服务器的这项服务

import java.util.ArrayList;

import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;

import com.google.android.gcm.GCMRegistrar;

import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.IBinder;
import android.util.Log;
import android.widget.Toast;

public class LocationService extends Service{

@Override
public void onCreate() {
// TODO Auto-generated method stub
super.onCreate();
final LocationManager mlocmag = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
final LocationListener mlocList = new MyLocationList();
final Location loc = mlocmag.getLastKnownLocation(LocationManager.GPS_PROVIDER);
   // This method is used to get updated location. 
mlocmag.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, mlocList);
LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);

Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
String provider = lm.getBestProvider(criteria, true);
Location mostRecentLocation = lm.getLastKnownLocation(provider);
UpdateWithNewLocation(mostRecentLocation); 


}

@Override
public void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();
}

@SuppressWarnings("deprecation")
@Override
public void onStart(Intent intent, int startId) {
// TODO Auto-generated method stub
super.onStart(intent, startId);
}
 private void UpdateWithNewLocation(final Location loc) {
    // TODO Auto-generated method stub

    if(loc!= null)
    {
    final double lat =loc.getLatitude(); // Updated lat
    final double Long = loc.getLongitude(); // Updated long
    final String regId = GCMRegistrar.getRegistrationId(this);
    ArrayList<NameValuePair> postParameters = new ArrayList<NameValuePair>();
    String Latitude=String.valueOf(lat);
    String Longitude=String.valueOf(Long);
    // define the parameter
    postParameters.add(new BasicNameValuePair("lat",Latitude));
    postParameters.add(new BasicNameValuePair("lang", Longitude));
    postParameters.add(new BasicNameValuePair("regId", regId));
    String response = null;

    // call executeHttpPost method passing necessary parameters 
    try {
    response = CustomHttpClient.executeHttpPost(
   "http://192.168.0.144/location.php", // your ip address if using localhost server

 postParameters);
    String result=response.toString();
   // Toast.makeText(this, result ,Toast.LENGTH_LONG).show();

    }catch (Exception e) {
         Log.e("log_tag","Error in http connection!!" + e.toString());     
        }
    }

    else 
    {
         String latLongStr = "No lat and longitude found";
         Toast.makeText(this, "Your location is "+latLongStr ,Toast.LENGTH_LONG).show();
    }


}
 public class MyLocationList implements LocationListener
 {

 public void onLocationChanged(Location arg0) {
     // TODO Auto-generated method stub
     UpdateWithNewLocation(arg0);
 }

 public void onProviderDisabled(String provider) {
     // TODO Auto-generated method stub
     Toast.makeText(getApplicationContext(),"GPS Disable ", Toast.LENGTH_LONG).show();
 }

 public void onProviderEnabled(String provider) {
     // TODO Auto-generated method stub
     Toast.makeText(getApplicationContext(),"GPS enabled", Toast.LENGTH_LONG).show();
 }

 public void onStatusChanged(String provider, int status, Bundle extras) {
     // TODO Auto-generated method stub

 }


}
@Override
public IBinder onBind(Intent arg0) {
    // TODO Auto-generated method stub
    return null;
}
}
于 2014-04-28T11:37:20.893 回答
0

嗯,这很难做到,因为如果你不定期请求位置,你就无法确定手机是否移动了,它可以像汽车一样快,也可以像人一样慢,所以我想出了一种可能性:

我不确切知道加速度计在 android 上的工作原理以及它的精度是多少(确保它必须取决于设备),但可以使用这些传感器来间接评估近似行进距离。

[编辑]

请注意,使用加速度计会消耗一些功率,并且您需要它不断运行,因此使用具有较小“采样率”的 GPS 可以更有效,并且肯定具有更高的精度。

于 2012-10-18T14:08:42.763 回答