Skip to content

Instantly share code, notes, and snippets.

@XjojoX1989
Created April 2, 2020 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save XjojoX1989/68bfc4cc8530e29262cfaf93f6de9566 to your computer and use it in GitHub Desktop.
Save XjojoX1989/68bfc4cc8530e29262cfaf93f6de9566 to your computer and use it in GitHub Desktop.
class MyIntentService : IntentService("MyIntentService") {
override fun onHandleIntent(intent: Intent?) {
//此時已在背景執行緒了,可以開始耗時操作
}
override fun onDestroy() {
super.onDestroy()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment