3
Timertask o Handler
Diciamo che voglio eseguire un'azione ogni 10 secondi e non è necessario aggiornare la vista. La domanda è: è meglio (intendo più efficiente ed efficace) usare il timer con timertask come qui: final Handler handler = new Handler(); TimerTask timertask = new TimerTask() { @Override public void run() { handler.post(new …