Top "Android-thread" questions

Repeat a task with a time delay?

I have a variable in my code say it is "status". I want to display some text in the application …

android android-thread
When to use handler.post() & when to new Thread()

I'm wondering when should I use handler.post(runnable); and when should I use new Thread(runnable).start(); It is …

android android-handler android-thread
Cannot access database on the main thread - Android Room - Using ThreadPoolExecutor

I'm getting that famous error "Cannot access database on the main thread since it may potentially lock the UI for …

android multithreading threadpoolexecutor android-room android-thread
Android: Realm access from incorrect thread. Realm objects can only be accessed on the thread they were created

So inside a IntentService, the app maybe active or inactive , onHandleIntent gets called , where I have placed this below code.…

android android-asynctask realm android-thread