web-dev-qa-db-fra.com

Utiliser wait dans AsyncTask

Lorsque j'utilise une wait dans une AsyncTask, j'obtiens ERROR/AndroidRuntime(24230): Caused by: Java.lang.IllegalMonitorStateException: object not locked by thread before wait()

Est-il possible d'utiliser une Asynctask juste pour attendre? Comment?

Merci

class WaitSplash extends AsyncTask<Void, Void, Void> {
    protected Void doInBackground(Void... params) {
        try {
            wait(MIN_SPLASH_DURATION);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return null;
    }       

    protected void onPostExecute() {
        waitSplashFinished = true;
        finished();
    }
}  
41
jul

Utilisez Thread.sleep () au lieu de wait()

91
Flo

Vous pouvez utiliser la méthode Thread.sleep 

    try {
        Thread.sleep(1000);         
    } catch (InterruptedException e) {
       e.printStackTrace();
    }
26
Luis Zandonadi
@Override
        protected String doInBackground(String... params) {
            // TODO Auto-generated method stub
            try {
                Thread.currentThread();
                Thread.sleep(5000);
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            return null;

        }
7
Rahul Jain

Si vous souhaitez simplement différer l'exécution d'une méthode pour une durée définie, une bonne option est Handler.postDelayed ()

définir le gestionnaire et exécutable ...

private Handler handler = new Handler();
private Runnable runnable = new Runnable() {        
    finished();
};

et exécuter avec retard ...

handler.postDelayed(runnable, MIN_SPLASH_DURATION);
3
Rich

Utilisez des discussions pour cela

public class SplashActivity extends Activity{

int splashTime = 5000;
private Thread splashThread;
private Context mContext;

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    this.mContext = this;
    setContentView(R.layout.splash_layout);
    splashThread = new Thread(){
        public void run() {
            try{
                synchronized (this) {
                    wait(splashTime);
                }
            }catch(InterruptedException ex){
                ex.printStackTrace();
            }finally{
                Intent i = new Intent(mContext,LocationDemo.class);
                startActivity(i);
                stop();
            }
        }
    };

    splashThread.start();
}

public boolean onTouchEvent(MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_DOWN) {
        synchronized (splashThread) {
            splashThread.notifyAll();
        }
    }
    return true;
}

sur événement tactile, le fil soit notifié .. peut changer selon vos besoins.

1
Zoombie

Vous avez cette façon de travailler avec asyntask et wait ();

public class yourAsynctask extends AsyncTask<Void, Void, Void> {
    public boolean inWait;
    public boolean stopWork; 

    @Override
    protected void onPreExecute() {
        inWait = false;
        stopWork = false;
    }

    @Override
    protected Void doInBackground(Void... params) {
        synchronized (this) {
            while(true) {
                if(stopWork) return null;
                if(youHaveWork) {
                    //make some
                } else {
                    try {
                        wait();
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }
            }
        }
        return null;
    }

    public void mynotify() {
        synchronized (this) {
            if(inWait) {
                notify();
                inWait = false;
            }
        }
    }

    public void setStopWork() {
        synchronized (this) {
            stopWork = false;
            if(inWait) {
                notify();
                inWait = false;
            }
        }
    }
}
0
Cifus