Thread in Android: An Example

StrictMode is most commonly used to catch accidental disk or network access on the application’s main thread, where UI operations are received and animations take place. Keeping disk and network operations off the main thread makes for much smoother, more responsive applications. By keeping your application’s main thread (UI thread) responsive, you also preventĀ ANR (Application Not Responding) dialogsĀ from being shown to users. Network requests being made on UI thread may Continue reading Thread in Android: An Example