Internals of HandlerThread in Android
Deep dive on understanding how HandlerThread class is implemented
Feb 22, 20243 min read165

Search for a command to run...
Articles tagged with #android
Deep dive on understanding how HandlerThread class is implemented

Understanding the flow of message using sendMessage() and handleMessage() method

Explore the code flow for Handler.post() method

Efficient Progress Tracking with Handlers and Threads in Android Development

Exploring Android Threading: Looper & Handler Concepts

Merriam Webster dictionary defines activity as the quality or state of being active : behavior or actions of a particular kind In a nutshell, Activity refers to place of interaction with an Android device. Technically, it represents a Window, but t...