如何请求和删除locationManager从线程到服务的更新

时间:2011-08-18 11:44:39

标签: android multithreading locationmanager

我有一个使用此接口的方法实现接口LocationListener的服务。

当我运行服务时,我实例化一个LocationManager。

然后我启动一个不间断循环运行的线程。

从这个线程开始,我希望我可以在我的locationManager上创建一个locationManager.removeupdates,在服务开始时实例化。

但是有一个问题,显然我需要一个Looper,我尝试过很多东西,但我不能用它。

基本上,这是我的代码,显然,我不知道如何使用Looper,因为我的代码在Log.d之后停止(“GPS”,“GPSActivé”);

我在Looper上搜索了一些内容,但在我的语言中找到了一个易于理解的方法(我是法语) 真的很难。

代码可能看起来很奇怪,因为我删除了很多东西......

public class ServicePrincipal extends Service implements LocationListener {

    boolean localisationOn = false;

    LocationManager locationManager;

    public class MyBinder extends Binder{
        ServicePrincipal getService(){
            return ServicePrincipal.this;
        }
    }

    @Override
    public IBinder onBind(Intent arg0) {
        return new MyBinder();
    }

    @Override
    public void onCreate() {
        super.onCreate();
    }

    @Override
    public void onDestroy() {
        locationManager.removeUpdates(this);
        super.onDestroy();
    }

    @Override
    public void onStart(Intent intent, int startId) {

        MyThread mythread = new MyThread();
                    MyThread.start();
        super.onStart(intent, startId);
    }

    public class MyThread extends Thread {

        int nbInfos;
        @Override
        public void run() {

            for (;;) {

                        if (localisationOn)
                        {
                            localisationOn = false;
                            Looper.prepare();
                            stopGPS();
                            Looper.loop();
                        }

                            if (!localisationOn)
                            {
                                Looper.prepare();
                                startGPS();
                                Looper.loop();
                                /* On active le flag de localisation */
                                localisationOn = true;
                            }
                }
                try {
                    Log.d("Boucle for", "~~~~ Fin de boucle ~~~~");
                    this.sleep(10000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
    }

    public void onLocationChanged(Location location) {
        if ((location != null) && (localisationOn))
        {
            Log.d("Localisation", "Envoi des informations de localisation avec :");
            Log.d("Latitude", String.valueOf(location.getLatitude()));
            Log.d("Longitude", String.valueOf(location.getLongitude()));
        }

    }

    public void onProviderDisabled(String provider) {

    }

    public void onProviderEnabled(String provider) {

    }

    public void onStatusChanged(String provider, int status, Bundle extras) {

    }

    public void startGPS()
    {
        /* Intent du service de localisation */
        locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
        /* On active l'actualisation par le GPS et par le réseau téléphonique */
        locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER,1,1,this);
        locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,1,1,this);

        Log.d("GPS", "GPS Activé");
    }

    public void stopGPS()
    {

        locationManager.removeUpdates(this);
        Log.d("GPS", "GPS Désactivé");
    }

}

1 个答案:

答案 0 :(得分:1)

当从线程调用requestLocationUpdates()时会发生此问题。您的程序将崩溃。我在工作时解决了这个问题。 我修改了你的代码。希望现在你的looper问题将得到解决。而且,它将消除你的无限循环问题。希望这个帮助。

public class ServicePrincipal extends Service implements LocationListener {

    boolean localisationOn = false;

    LocationManager locationManager;
    private final Handler handler = new Handler();
    public class MyBinder extends Binder{
        ServicePrincipal getService(){
            return ServicePrincipal.this;
        }
    }

    @Override
    public IBinder onBind(Intent arg0) {
        return new MyBinder();
    }

    @Override
    public void onCreate() {
        super.onCreate();
    }

    @Override
    public void onDestroy() {
        locationManager.removeUpdates(this);
        super.onDestroy();
    }

    @Override
    public void onStart(Intent intent, int startId) {

        /*MyThread mythread = new MyThread();
                    MyThread.start();*/
    handler.post(getData);
        super.onStart(intent, startId);
    }

    private final Runnable getData = new Runnable() {
        public void run() {
            getDataFrame();      
        }
    };

    private void getDataFrame() {
        if (localisationOn){
                            localisationOn = false;
                            stopGPS();
                }
        if (!localisationOn){
                        startGPS();
                        /* On active le flag de localisation */
                        localisationOn = true;
                }
        handler.postDelayed(getData,10000);

    }
    public void onLocationChanged(Location location) {
        if ((location != null) && (localisationOn))
        {
            Log.d("Localisation", "Envoi des informations de localisation avec :");
            Log.d("Latitude", String.valueOf(location.getLatitude()));
            Log.d("Longitude", String.valueOf(location.getLongitude()));
        }

    }

    public void onProviderDisabled(String provider) {

    }

    public void onProviderEnabled(String provider) {

    }

    public void onStatusChanged(String provider, int status, Bundle extras) {

    }

    public void startGPS()
    {
        /* Intent du service de localisation */
        locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
        /* On active l'actualisation par le GPS et par le réseau téléphonique */
        locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER,1,1,this);
        locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,1,1,this);

        Log.d("GPS", "GPS Activé");
    }

    public void stopGPS()
    {

        locationManager.removeUpdates(this);
        Log.d("GPS", "GPS Désactivé");
    }

}