開始工作好幾個星期了,一直想說要把學到的東西寫下來,
做一個學習筆記,也順便釐清自己的思緒,不過人就是懶,
目前分類:基礎 (2)
- Mar 02 Sun 2014 21:03
android 我在"小朋友愛塗鴨"所學到的-Canvas
- Sep 17 Tue 2013 11:34
handler
android developers 原文中的說明
A Handler allows you to send and process Message
and Runnable objects associated with a thread's MessageQueue
. Each Handler instance is associated with a single thread and that thread's message queue. When you create a new Handler, it is bound to the thread / message queue of the thread that is creating it -- from that point on, it will deliver messages and runnables to that message queue and execute them as they come out of the message queue.