Computer Science, asked by yogo83791, 1 year ago

Handler in android ?

Answers

Answered by pandeysakshi2003
0

android.os.Handler allows us 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. Handler used for: ... Managing messages in the queue.

please make sure me brainlist

Answered by vuyyuribhanurekha
0

Answer:

A Handler allows communicating back with UI thread from other background thread . This is useful in android as android doesn't allow other threads to communicate directly with UI thread. How Handler works. A Handler allows you to send and process Message and Runnable objects associated with a thread's MessageQueue.

Explanation:

Similar questions