I have an Android service that starts and maintains a background thread.
From time to time, the background thread needs to do a callback on the main thread. I\'m stu
For Kotlin:
Handler(Looper.getMainLooper()).post { /*My task*/ }