Android Update UI From Child Thread Example

Andriod UI is not thread-safe. So you should update the android UI in the android activity main thread, otherwise, it will throw an exception. But there are also methods to update android UI from the child thread. This example will show you how to do that.