Day129 — View.post
1 min readDec 10, 2019
add Runnable to the message queue
Android offers several ways to access the UI thread from other threads.
- Activity.runOnUiThread(Runnable)
- View.post(Runnable)
- View.postDelayed(Runnable, long)
- Handler
add Runnable to the message queue
Android offers several ways to access the UI thread from other threads.