Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 342 Bytes

README.md

File metadata and controls

7 lines (5 loc) · 342 Bytes

Android Threading

Threading Components that Attach to an Activity/Fragment: These threads are tied to the lifecycle of the activity/fragment and are terminated as soon as the activity/fragment is destroyed.

AsyncTask

AsyncTask is the most basic Android component for threading. It’s simple to use and can be good for basic scenarios.