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);
(Non ho idea di come usare un gestore.) - Ho letto da qualche parte che ho bisogno di usare un oggetto gestore. –