How to use RunOnUIThread() in Xamarin Android

33,418

Solution 1

You don't need to.

In this code you posted:

bStateuserID.Click +=  async delegate 
{
    details.Text=" ";
    Guid x = new Guid("33F8A8D5-0DF2-47A0-9C79-002351A95F88");
    state OStateUserID =(state) await obj.GetStateByUserId(x.ToString());
    details.Text = OStateUserID.name + "\n" + OStateUserID.population);
};

The line

details.Text = OStateUserID.name + "\n" + OStateUserID.population);

is already running on the UI thread.

I have an async intro on my blog that explains this behavior.

Solution 2

I'm not sure how you could have missed it, since you have the proper function name. Anyway, you could do it with lambda expression :

Activity.RunOnUiThread(() => {
    details.Text = OStateUserID.name + "\n" + OStateUserID.population;
});

Or you could create a method for it

Activity.RunOnUiThread(Action);

private void Action() 
{ 
    details.Text = OStateUserID.name + "\n" + OStateUserID.population;
}

In the latter case, you would have to store variables in private fields if it wasn't the case already. In the first case, it will work if the variables are in the same scope as the RunOnUiThread call.

Share:
33,418
Suraj
Author by

Suraj

Updated on July 05, 2022

Comments

  • Suraj
    Suraj almost 2 years

    I would like to run this statement after getting result into OStateUserId object.

    details.Text = OStateUserID.name + "\n" + OStateUserID.population);

    bStateuserID.Click +=  async delegate 
    {
        details.Text=" ";
        Guid x = new Guid("33F8A8D5-0DF2-47A0-9C79-002351A95F88");
        state OStateUserID =(state) await obj.GetStateByUserId(x.ToString());
        details.Text = OStateUserID.name + "\n" + OStateUserID.population);
    };
    

    GetStateByUserId() method returns an object of class State.

    It runs asynchronously. After completing operation, I'd like to assign the name and population to the TextView details.

    How can i use RunOnUIThread() in this case?