Difference between the main thread and UI thread

前端 未结 5 1673
醉梦人生
醉梦人生 2020-12-12 15:20

I\'m given to understand that both are the same. But I recently(a bit late to the party) came across android support annotations . The note in the same reads

5条回答
  •  被撕碎了的回忆
    2020-12-12 15:51

    In Android, the "main" application thread is sometimes called the UI thread.

    Quote from official API about the Main Thread:

    [...] the thread in which your application interacts with components from the Android UI toolkit (components from the android.widget and android.view packages). As such, the main thread is also sometimes called the UI thread.

    Official API found here.

提交回复
热议问题