Latest Android Aptitude Question SOLUTION: What is the difference between thread and handler thread, in android?
Options
1) Thread will have looper and Message Queue. Default this looper will be prepared to handle incoming
What is the difference between thread and handler thread, in android?
Options
1) Thread will have looper and Message Queue. Default this looper will be prepared to handle incoming messages from other threads.
2) Handler thread will have looper and MessageQueue, but looper is prepared to handle incoming message.
3) Both are same. No difference, but HandlerThread is sub class of Thread class.
4) Both are same. No difference, But HandlerThread is super class of Thread class.