IntentService는 인텐트를 전달하여 서비스의 어떤 작업을 수행하는데 사용될 수 있습니다. 파일 다운로드나 업로드 등의 처리 시간이 긴 작업을 수행하는데 사용할 수 있습니다. 또한, 인텐트만 전달하면 되기 때문에 사용하기 간편합니다.
IntentService를 구현하고 사용하는 방법에 대해서 알아보겠습니다.
이 글의 코드는 kotlin으로 작성되었습니다.
IntentService는 background 제한 정책이 적용되면서 deprecated되었습니다. Android 8.0(API 26) 이상에서는 WorkManager나 JobIntentService를 이용할 수 있습니다.
구현
먼저 다음과 같이 IntentService를 상속하는 서비스를 생성합니다.
class MyIntentService : IntentService("MyIntentService") {
companion object {
const val TAG = "MyIntentService"
}
// 1
override fun onHandleIntent(intent: Intent?) {
Log.d(TAG, "MSG: ${intent?.getStringExtra("MSG")}")
for (i in 1..10) {
Thread.sleep(1000)
Log.d(TAG, "onHandleIntent() : $i")
}
}
// 2
override fun onDestroy() {
super.onDestroy()
Log.d(TAG, "Job execution finished")
}
}
- Intent가 전달되면
onHandleIntent()
가 callback되며 여기서 Job을 수행하도록 구현할 수 있습니다. - 모든 인텐트가 처리되면
onDestroy()
가 호출되며 서비스는 종료됩니다.
AndroidManifest.xml
에는 다음과 같이 Service를 선언합니다.
<service android:name=".MyIntentService" />
이렇게 코드를 작성하고 Manifest에 등록하면 서비스를 이용할 수 있습니다.
실행
다음과 같이 인텐트를 실행하고, startService()
로 서비스를 실행할 수 있습니다.
val intent = Intent(this, MyIntentService::class.java)
intent.putExtra("MSG", "Do something")
startService(intent)
위에서 말한 것처럼 Intent는 onHandleIntent()
로 전달됩니다.
위의 코드를 실행한 결과는 다음과 같습니다.
12-29 21:10:18.029 9734 9782 D MyIntentService: MSG: Do something
12-29 21:10:19.029 9734 9782 D MyIntentService: onHandleIntent() : 1
12-29 21:10:20.029 9734 9782 D MyIntentService: onHandleIntent() : 2
12-29 21:10:21.030 9734 9782 D MyIntentService: onHandleIntent() : 3
12-29 21:10:22.030 9734 9782 D MyIntentService: onHandleIntent() : 4
12-29 21:10:23.030 9734 9782 D MyIntentService: onHandleIntent() : 5
12-29 21:10:24.030 9734 9782 D MyIntentService: onHandleIntent() : 6
12-29 21:10:25.031 9734 9782 D MyIntentService: onHandleIntent() : 7
12-29 21:10:26.031 9734 9782 D MyIntentService: onHandleIntent() : 8
12-29 21:10:27.031 9734 9782 D MyIntentService: onHandleIntent() : 9
12-29 21:10:28.032 9734 9782 D MyIntentService: onHandleIntent() : 10
12-29 21:10:28.037 9734 9734 D MyIntentService: Job execution finished
이 글에서 사용한 예제는 GitHub에서 확인할 수 있습니다.
주의사항
Android Oreo부터 Background 서비스 실행을 제한합니다. IntentService가 Foreground에서만 실행된다면 문제없지만, App이 Background로 전환되면 Service가 중단되거나 실행되지 않을 수 있습니다. 이런 문제를 피하기 위해 WorkManager나 JobIntentService를 사용할 수 있습니다.
참고
Related Posts
- Android 14 - 사진/동영상 파일, 일부 접근 권한 소개
- Android - adb push, pull로 파일 복사, 다운로드
- Android 14 - 암시적 인텐트 변경사항 및 문제 해결
- Jetpack Compose - Row와 Column
- Android 13, AOSP 오픈소스 다운로드 및 빌드
- Android 13 - 세분화된 미디어 파일 권한
- Android 13에서 Notification 권한 요청, 알림 띄우기
- Android 13에서 'Access blocked: ComponentInfo' 에러 해결
- 에러 해결: android gradle plugin requires java 11 to run. you are currently using java 1.8.
- 안드로이드 - 코루틴과 Retrofit으로 비동기 통신 예제
- 안드로이드 - 코루틴으로 URL 이미지 불러오기
- Android - 진동, Vibrator, VibrationEffect 예제
- Some problems were found with the configuration of task 에러 수정
- Query method parameters should either be a type that can be converted into a database column or a List
- 우분투에서 Android 12 오픈소스 다운로드 및 빌드
- Android - ViewModel을 생성하는 방법
- Android - Transformations.map(), switchMap() 차이점
- Android - Transformations.distinctUntilChanged() 소개
- Android - TabLayout 구현 방법 (+ ViewPager2)
- Android - 휴대폰 전화번호 가져오는 방법
- Android 12 - Splash Screens 알아보기
- Android 12 - Incremental Install (Play as you Download) 소개
- Android - adb 명령어로 bugreport 로그 파일 추출
- Android - adb 명령어로 App 데이터 삭제
- Android - adb 명령어로 앱 비활성화, 활성화
- Android - adb 명령어로 특정 패키지의 PID 찾기
- Android - adb 명령어로 퍼미션 Grant 또는 Revoke
- Android - adb 명령어로 apk 설치, 삭제
- Android - adb 명령어로 특정 패키지의 프로세스 종료
- Android - adb 명령어로 screen capture 저장
- Android - adb 명령어로 System 앱 삭제, 설치
- Android - adb 명령어로 settings value 확인, 변경
- Android 12 - IntentFilter의 exported 명시적 선언
- Android - adb 명령어로 공장초기화(Factory reset)
- Android - adb logcat 명령어로 로그 출력