Est-il possible d'utiliser AsyncTask dans une classe de Service?

Tout est dans le titre.

Sur les documentations officielles, il est indiqué que Note that services, like other application objects, run in the main thread of their hosting process et AsyncTask ne fonctionne que si elle est exécutée dans l'UIThread.

Ainsi est-il possible d'utiliser AsyncTask dans une classe de Service?

Je suis en train de le faire, mais je suis toujours la même erreur

05-01 18:09:25.487: ERROR/JavaBinder(270): java.lang.ExceptionInInitializerError

...

05-01 18:09:25.487: ERROR/JavaBinder(270): Caused by: java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()

Je fais quelque chose de mal ou est-ce tout simplement impossible ?

Voici le code de ma classe de Service

package com.eip.core;

import android.app.Service;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.IBinder;
import android.os.RemoteException;
import android.util.Log;

public class NetworkService extends Service {


    private final INetwork.Stub mBinder = new INetwork.Stub() {

        @Override
        public int doConnect(String addr, int port) throws RemoteException {
            new ConnectTask().execute("test42");
            return 0;
        }
    };

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

    private class ConnectTask extends AsyncTask<String, Void, Void> {

        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            Log.i("OnPreExecute()", "");
        }

        @Override
        protected Void doInBackground(String... arg0) {
            Log.i("doInBackground()", "");
            return null;
        }

        @Override
        protected void onPostExecute(Void result) {
            super.onPostExecute(result);
            Log.i("OnPostExecute()", "");
        }

    }
}
InformationsquelleAutor Spredzy | 2010-05-01