I am new to Android. I want to know what the Looper class does and also how to use it. I have read the Android Looper class documentation but I am unable to completely understand. I have seen it in a lot of places but unable to understand its purpose. Can anyone can help me by defining the purpose of Looper and also by giving a simple example if possible?
|
feedback
|
|
Class used to run a message loop for a thread. Threads by default do not have a message loop associated with them; to create one, call Most interaction with a message loop is through the Handler class. Below there is a run method of thread
| ||||
|
feedback
|
|
check this: http://developer.android.com/reference/android/os/Looper.html also see: http://developer.android.com/reference/android/os/Handler.html | |||
|
feedback
|