I know there were similiar question, but my problem slightly different i have such code
Thread t = new Thread(){
public void run(){
while(!r
You can use this activity method:
YourActivity.this.runOnUiThread(new Runnable() {
@Override
public void run(){
//Your awesome code here
}
});
well in the change now you can do
new Handler(Looper.getMainLooper()).post(new Runnable() {
@Override
public void run() {
// your ui code here
}
});