位置跟踪服务会降低应用的速度

时间:2014-08-18 13:53:07

标签: java android service location

对于一个项目我需要一个应用程序,它可以在webview中打开一个网页,同时跟踪用户位置,即使手机未处于活动状态或其他应用程序位于前面。

我得到了这个工作,一切正常。检索位置,服务器可以使用位置。

问题是,如果我在经过两个多小时的后台跟踪后切换回应用程序,一切都会变慢,并且webview中的响应时间非常糟糕。

似乎位置服务正在减慢应用程序的速度。在安装服务之前,此问题不存在。我无法解释,是什么导致该应用程序缺乏,也许有人可以帮助我。

这是我的位置服务的代码。它在Webview的onCreate中被称为Intent。 Locations被写入一个字符串缓冲区,并被上传到服务器。 (省略了一些空覆盖功能)

public class MyLocationService extends Service {

    double latService;
    double lngService;
    long timeService;
    float accService;
    long oldtime;
    String hash = "";
    String buffer = "";
    private LocationManager lm;

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        final Handler handler = new Handler();
        final Runnable r = new Runnable() {
            public void run() {
                LocationUpdates();
                if ((timeService > 0) && (oldtime != timeService)) {
                    oldtime = timeService;
                    if (buffer.equals("")) {
                        buffer += latService + "," + lngService + "," + accService + "," + timeService;
                    } else {
                        buffer += ";" + latService + "," + lngService + "," + accService + "," + timeService;
                    }
                    AsyncHttpClient client = new AsyncHttpClient();
                    RequestParams params = new RequestParams();
                    params.put("d", buffer);
                    client.post("server.php", params, new TextHttpResponseHandler() {
                        @Override
                        public void onSuccess(int arg0, Header[] arg1, String arg2) {
                            System.out.println(arg2);
                            buffer = "";
                        }
                    });
                }
                handler.postDelayed(this, 15000);
            }
        };
        handler.postDelayed(r, 10);
        return Service.START_NOT_STICKY;
    }

    public void LocationUpdates() {
        locListener locList = new locListener();
        lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
        lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locList);
    }

    public class locListener implements LocationListener {
        @Override
        public void onLocationChanged(Location location) {
            latService = location.getLatitude();
            lngService = location.getLongitude();
            timeService = Math.round(location.getTime() / 1000);
            accService = location.getAccuracy();
        }
    }
}

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我强烈建议您使用Fused location provider与PRIORITY_BALANCED_POWER_ACCURACY:

LocationRequest request = LocationRequest.create()
        .setPriority(LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY)
        .setInterval(POLLING_INTERVAL)
        .setFastestInterval(POLLING_INTERVAL/2)
        .setSmallestDisplacement(MIN_INTERVAL_METERS);

它旨在为您提供40米范围的精度,电池消耗<= 0.6%/小时。

还记得在不再需要时立即关闭位置。