2012-06-16 6 views
11

Ho aggiunto questa parte del codice nel mio metodo onCreate() e si blocca la mia app. bisogno di aiuto.arresto anomalo dell'app con "Chiamata da errore thread errato"

Logcat:

android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread 
that created a view hierarchy can touch its views. 

CODICE:

final TextView timerDisplayPanel = (TextView) findViewById(R.id.textView2); 

    Timer t = new Timer(); 
    t.schedule(new TimerTask(){ 
     public void run(){ 
      timerInt++; 
      Log.d("timer", "timer"); 
      timerDisplayPanel.setText("Time ="+ timerInt +"Sec"); 
     } 
    },10, 1000); 
+0

(Non ho idea di come usare un gestore.) - Ho letto da qualche parte che ho bisogno di usare un oggetto gestore. –

risposta

32
Only the original thread that created a view hierarchy can touch its views. 

Si sta cercando di modificare il testo del elemento dell'interfaccia utente in Non UI thread, in modo che dà eccezione. Utilizzare runOnUiThread

Timer t = new Timer(); 
t.schedule(new TimerTask() { 
public void run() { 
     timerInt++; 
     Log.d("timer", "timer"); 

     runOnUiThread(new Runnable() { 
      @Override 
      public void run() { 
       timerDisplayPanel.setText("Time =" + timerInt + "Sec"); 
      } 
     }); 

    } 
}, 10, 1000);