🎴 Flashcard Mode

Android Processes

Card1 / 15
Mastered0
Review0
QuestionClick to flip

View.post(runnable) is a

AnswerClick to flip back
A
UI thread
💡 Explanation:

In Android, View.post(Runnable) executes the Runnable on the UI thread (main thread). This method is commonly used to update UI elements from background threads, as all UI operations must occur on the UI thread. The posted Runnable executes after the current message queue processing, ensuring thread-safe UI updates.

Change Mode