I\'m reading some data like speed and curent location using a single ton class....I\'m reading them using an AsyncTask thread in a loop....:)....each time I\'m reading a new spe
You should always post UI updates on the UIThread.
runOnUiThread(new Runnable() { public void run() { speed_1.setText(Integer.toString(speed)); location.setText(loc1); } }