I have a thread handler which handles the looper of a “worker” thread. At some point in my Activity’s lifecycle, I am calling “quit” method on the worker thread which releases its current looper. Then what will happen to the (worker) thread handler?
Share
once you call quit on looper, it will discard all the messages in que and will not take further messages.