0

I am making use of AsyncTask in my app and the code is,

protected Void doInBackground(Void... params) {
        // Get the current thread's token

        try {
            synchronized (this) {
                Looper.prepare();                   
                if (isCancelled()) {

                } else {                        
                    gpsCoordinates = new GetGpsCoordinates();   
                    location = gpsCoordinates.getLocation(context);

                    int counter = 0;
                    while (counter <= 4) {
                        this.wait(850);
                        counter++;
                        publishProgress((int) (counter) * 50);
                    }
                }
            }
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        return null;
    }

and GetGpsCoordinates.class,

public Location getLocation(Context mContext) {
    try {
        locationManager = (LocationManager) mContext
                .getSystemService(LOCATION_SERVICE);
        Criteria criteria = new Criteria();
        criteria.setAccuracy(Criteria.ACCURACY_FINE);

        // getting GPS status
        isGPSEnabled = locationManager
                .isProviderEnabled(LocationManager.GPS_PROVIDER);

        // getting network status
        isNetworkEnabled = locationManager
                .isProviderEnabled(LocationManager.NETWORK_PROVIDER);

        if (!isGPSEnabled && !isNetworkEnabled) {
            // no network provider is enabled
        } else {
            this.canGetLocation = true;
            // First get location from Network Provider
            Log.d("","collecting lat,lng details");
            if (isNetworkEnabled) {             
                locationManager.requestLocationUpdates(
                        LocationManager.NETWORK_PROVIDER,
                        MIN_TIME_BW_UPDATES,
                        MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                Log.d("Network", "Network");
                if (locationManager != null) {
                    location = locationManager
                            .getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
                    if (location != null) {
                        latitude = location.getLatitude();
                        longitude = location.getLongitude();
                    }
                }
            }
            // if GPS Enabled get lat/long using GPS Services
            if (isGPSEnabled) {
                if (location == null) {
                    locationManager.requestLocationUpdates(
                            LocationManager.GPS_PROVIDER,
                            MIN_TIME_BW_UPDATES,
                            MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                    Log.d("GPS Enabled", "GPS Enabled");
                    if (locationManager != null) {
                        location = locationManager
                                .getLastKnownLocation(LocationManager.GPS_PROVIDER);
                        if (location != null) {
                            latitude = location.getLatitude();
                            longitude = location.getLongitude();

                        }
                    }
                }
            }
        }

    } catch (Exception e) {
        e.printStackTrace();
    }

    return location;
}

I am getting excception if I use looper.prepare(). This is my logcat,

 06-05 17:26:16.410: E/AndroidRuntime(19075): java.lang.RuntimeException: An error occured while executing doInBackground()
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at android.os.AsyncTask$3.done(AsyncTask.java:200)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at java.util.concurrent.FutureTask$Sync.innerSetException(FutureTask.java:274)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at java.util.concurrent.FutureTask.setException(FutureTask.java:125)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at  java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:308)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at java.util.concurrent.FutureTask.run(FutureTask.java:138)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1088)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:581)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at java.lang.Thread.run(Thread.java:1019)
 06-05 17:26:16.410: E/AndroidRuntime(19075): Caused by: java.lang.RuntimeException: Only one Looper may be created per thread
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at android.os.Looper.prepare(Looper.java:74)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at com.bu.PropertySearchTypes.CameraSearch$LoadViewTask.doInBackground(CameraSearch.java:125)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at com.bu.PropertySearchTypes.CameraSearch$LoadViewTask.doInBackground(CameraSearch.java:1)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at android.os.AsyncTask$2.call(AsyncTask.java:185)
 06-05 17:26:16.410: E/AndroidRuntime(19075):   at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:306)

I am calling this asynctask in onSensorChanged() i.e., for every sensor value change this thread is executed. Please help me out. I am very much frustrated with this exception. Thanks for the help!!

Mahe
  • 2,707
  • 13
  • 50
  • 69

1 Answers1

1

You MUST start the new looper in a new thread. The exception contains this info. For correct usage check out this post: What is the purpose of Looper and how to use it?

But the real question is whether you need it at all? You need it if you want to start a Handler. I'm not sure you need it but even in that you need it, there is the specialized HandlerThread class for you that takes care of the Looper as well.

Community
  • 1
  • 1
allprog
  • 16,540
  • 9
  • 56
  • 97