I\'ve read well enough on the subject to get well and thoroughly confused. I\'m doing a workout tracker app such as RunKeeper, which tracks how long and how far the user has
Use runOnUiThread().
Define a Runnable:
Runnable
private Runnable mRunnable = new Runnable() { @Override public void run() { mTextViewOne.setText("10 miles!"); mTextViewTwo.setText("40 minutes!"); } };
Inside your continuous thread:
runOnUiThread(mRunnable);