Error: Only the original thread that created a view hierarchy can touch its views in Xamarin

后端 未结 3 920
离开以前
离开以前 2021-01-20 05:54

I am getting an error error: Only the original thread that created a view hierarchy can touch its views

in line

BookingAdapter expListAd         


        
3条回答
  •  北荒
    北荒 (楼主)
    2021-01-20 06:17

    You're calling GetServicesForUserCompleted method from SalonServicesClient on worker thread. Invoke it on the UI thread instead.

提交回复
热议问题