Example usage for Java android.os Looper fields, constructors, methods, implement or subclass
The text is from its open source code.
void | dump(@NonNull Printer pw, @NonNull String prefix) Dumps the state of the looper for debugging purposes. |
boolean | equals(Object obj) Indicates whether some other object is "equal to" this one. |
Looper | getMainLooper() Returns the application's main looper, which lives in the main thread of the application. |
Thread | getThread() Gets the Thread associated with this Looper. |
void | loop() Run the message queue in this thread. |
Looper | myLooper() Return the Looper object associated with the current thread. |
MessageQueue | myQueue() Return the MessageQueue object associated with the current thread. |
void | prepare() Initialize the current thread as a looper. |
void | quit() Quits the looper. |
void | quitSafely() Quits the looper safely. |