What is the difference between a background and foreground service?

后端 未结 3 471
予麋鹿
予麋鹿 2020-12-13 17:27

I am currently writing my first Android application and I keep running into references to background and foreground services. Since I intend on using a service in my applica

3条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-13 17:46

    Foreground Service is used when User is interaction with application and when Service is doing something visible to user. Background Service is used when even user close application (discard from recents) and when Service is doing something not visible to user like downloading data from server, load data from a ContentProvider etc.. And Foreground Service is less likely to be killed by system on low memory.

提交回复
热议问题