Working from the background, Popkov Sergey - CTO @RDigital

Опубликовано: 06 Июнь 2026
на канале: Android Academy Minsk
630
16

Slides: https://bit.ly/3b1uuLy
Telegram: https://t.me/androidacademyminsk
Facebook:   / androidacademyminsk  

Every Android app has a main thread that is in charge of handling UI (including measuring and drawing views), coordinating user interactions, and receiving lifecycle events. If there is too much work happening on this thread, the app appears to hang or slow down, leading to undesirable user experience. Any long-running computations and operations such as decoding a bitmap, accessing the disk, or performing network requests should be done on a separate background thread. In general, anything that takes more than a few milliseconds should be delegated to a background thread.

#androidacademyfundamentals2019