What is the difference between services and thread in android?

What is the difference between services and thread in android?

اینڈرائیڈ میں سروسز اور تھریڈ میں کیا فرق ہے؟
Explanation
  • Services: Perform tasks in the background and continue running even if the user switches to another app. By default, they run on the main thread.
  • Threads: Operate within the app's lifecycle, are used for parallel execution, and stop when the app stops.