does anyone know how doAsync can modify the UI wit...
# anko
g
does anyone know how doAsync can modify the UI without being on the UI threaD?
m
I think you can modify UI properties outside UI thread as long as drawing happens on UI, thats why there is
invalidate()
and
postInvalide()
. However, many property changes trigger a
invalidate()
as a side effect.