chris-piekarski
5/2/2013 - 9:17 PM

Android Views & CalledFromWrongThreadException

Android Views & CalledFromWrongThreadException

#CalledFromWrongThreadException
#Views can only be executed on by the thread that created them. If your in a different thread you have to use
#the runOnUiThread method.

runOnUiThread(new Runnable() {
     public void run() {

      //stuff that updates ui

    }
});