The simplest way is to call runOnUiThread(…) from your thread
activity.runOnUiThread(new Runnable() {
public void run() {
... do your GUI stuff
}
});
The simplest way is to call runOnUiThread(…) from your thread
activity.runOnUiThread(new Runnable() {
public void run() {
... do your GUI stuff
}
});