I would like to insert a time counter inside a game. If the time is 0, there would be an AlertDialog which tells the user the time is out, and goes back to the previous Activity. Here is the method (it is inside a class which extends a SurfaceView):

public void showTime(){
    time--;
    Log.i("GameView time", "" + time);
    if (time <= 0){
        Log.i("gameview time","time out");
        gameTimer.setRunning(false);
        AlertDialog.Builder alt_bld = new AlertDialog.Builder(this.getContext());
        AlertDialog alert = alt_bld.create();
        alert.setTitle("Time is out. You lose.");
        alert.setButton("OK", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int which) {
                main.onBackPressed();
            }});
        alert.show();
    }
}

The GameTimer class is a Thread:

public class GameTimer extends Thread{

private GameView gameView;
private boolean run;

public GameTimer(GameView gameView){
    this.gameView = gameView;
}

public void setRunning(boolean value){
    this.run = value;
} 

public void run(){
             Looper.prepare();
    while (run){
        try {
            gameView.showTime();
            sleep(1000);
        } catch (Exception e){
            e.printStackTrace();
        }
    }
            Looper.loop();
}

}

The AlertDialog appears, but the app crashes, with the message: Only the original thread that created a view hierarchy can touch views. But this is the thread which created... Where's the problem?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Do this using Handler or Use

this.runOnUiThread(new Runnable() {

        public void run() {
            // TODO Auto-generated method stub

        }
    });

The error itself tells the whole story. And if you are not in Activity/ View's Parent class then use some callback Mechnasim. This will help you to resolve your issue. Cheers.

link|improve this answer
I've tried this... unfortunately nothing changed:( – mollybaba Feb 2 at 10:01
1  
see here how to use Looper inside thread developer.android.com/reference/android/os/Looper.html and It seems that your GameTimer is sperate public class, it is not an inner class of Activity, So neither runOnUiThread or Handler will work. For this I have told you implement a callback, whenever you want to show time, intimate the Activity class for the same. Hope you understood now. – Yuvi Feb 2 at 10:08
Thanks:) now it's ok – mollybaba Feb 2 at 10:24
your welcome :) – Yuvi Feb 2 at 10:49
feedback

Judging by the error you are getting, you are passing your View object into the Thread class constructor from somewhere else and then trying to use it's method to create an AlertDialog. Unfortunately this will not work. You need to use Handler to send back the message(in your case, time = 0) from your thread to your View class , where you have defined the showTime() method. Define the Handler and then override the handleMesage() method to call your showTime() methid.

Below link can help you get started. http://developer.android.com/reference/android/os/Handler.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.