I was reading in the Web (Why to use Service if it runs in the same thread in android) about Services and Threads and i came to a conclusion that in general Services have a higher priority than Thread.
I have an app that executes a download operation using simple Threads via a static class and completes in 5 minutes. But when i press Home button and after a while open the app again the execution went slower because i pressed the home button.
What am i asking is, if i use a service will go faster or by pressing the home button it is normal to slow down the apps or priorities are irrelevant all together with the execution time?
Thank you.