difference between timer and alarmmanager

后端 未结 2 972
一个人的身影
一个人的身影 2020-12-28 16:07

I am a bit confused about Timer and AlarmManager used in Android.

What are the main differences between them?

They are b

2条回答
  •  天命终不由人
    2020-12-28 17:08

    Timer starts a service it executes code very frequently even thought it wasn't actually doing anything.

    Alarmmanager on the other hand will start a Service that runs in the background always, this is what you want to use to schedule your code to run when your app isn't open.

提交回复
热议问题