I\'m trying to convert an Activity to fragment. The error mark on runOnUiThread.
on the past:
GoogleActivityV2 extends from Activity. ru
You can also post runnable using the view from any other thread. But be sure that the view is not null:
tView.post(new Runnable() {
@Override
public void run() {
tView.setText("Success");
}
});
According to the Documentation:
"boolean post (Runnable action) Causes the Runnable to be added to the message queue. The runnable will be run on the user interface thread."