Android: What's the difference between Activity.runOnUiThread and View.post?

后端 未结 4 1936
粉色の甜心
粉色の甜心 2020-12-04 11:09

What\'s the difference between Activity.runOnUiThread and View.post, could someone, please, explain?

4条回答
  •  温柔的废话
    2020-12-04 11:36

    Another difference between Activity.runOnUiThread and view.post() is that the runnable in view.post() is called after the view is attached to a window.

提交回复
热议问题