Android uses MessageQueue (pipeline thread pattern) to process UI events (such as button clicks, mouse movement, orientation changes, screen redraw and so on). This allows you to change a button caption without having to worry that the user will click the button at the same moment.
But when we post Message to worker thread MessageQueue (which is different with UI Thread MessageQueue)
How the Rendering happen?
I mean to say we can perform rendering only on UI thread then how it is possible with worker thread too.
Please correct me if I am wrong...