1. 程式人生 > >Handler 訊息佇列常用處理方法

Handler 訊息佇列常用處理方法

如果需要不斷髮送同一個訊息(例如定時器),要先判斷佇列中是否已經有該訊息,同時,在退出時,要把訊息列表的訊息移除

sendMessage

判斷訊息佇列中是否有該訊息

boolean Handler.hasMessages(int what)

移除訊息佇列中的訊息

void Handler.removeMessages(int what)