Android后台位置更新?

时间:2012-10-18 13:12:05

标签: android location

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

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

但是在Android上的后台运行位置更新所需的常用步骤是什么?

我必须保持整个应用程序在后台运行GPS吗?

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

我也不想杀死电池,因为GPS使用频率很高。

有什么想法吗?

4 个答案:

答案 0 :(得分:4)

我建议您创建一个扩展Service的类,此服务将在后台运行。 This is an example, which will store the GPS data in a SQLite database。这可能会指向正确的方向。

答案 1 :(得分:2)

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

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

蜂窝网络精确到50米,因此可能满足您对重复ping的需求 - 在准确性和电池寿命之间有所妥协。

答案 2 :(得分:2)

我用这个服务将我在后台的位置更新到我的localhost服务器

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;
}
}

答案 3 :(得分:0)

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

我不确切知道acelerometer如何在android上工作,它的精确度是什么(确定它必须取决于设备)但是可以使用这些传感器间接评估近似行进距离

<强> [编辑]

请注意,使用acelerometer会使用一些电源,您将需要它不断运行,所以使用GPS采样率较低&#34;&#34;可以提高效率,确保更高精度。