Pages

Thursday 23 April 2015

Diffrence between service and intentServcie

Service 

1)Used to do the task in background
2)dont have UI
3)starts with main Thread.

Demerits:
 If we do long running task in background the ANR will occour,
To avoid this we have to use thread to do long running task in background
So to fulfill the above requirement we have intent service which provide worker Thread to do long running task in background.

IntentService

Its a extension of service which enable to do long running task in background

No comments:

Post a Comment