I've got a couple of Views that are updated once a second by a Timer task. They can't invalidate()
themselves because "only the original thread that created a view hierarchy can touch its views".
There is a function called runOnUiThread
for this, but I need an Activity to run it.
How can I solve this problem?
Edit: Is this what postInvalidate()
is for? How guaranteed am I that the invalidation and update will happen soon (if the UI thread isn't busy)?
1)
Yes
According to the Docs
invalidate()
is for updatingViews
on theUI Thread
2)
Also from that same part of the docs
So I guess this depends on your definition of "soon". As the docs say it should happen on the next event loop