안드로이드는 날짜, 시간이 변경될 때 앱에게 인텐트를 전달합니다.
사용자가 직접 시간 설정을 변경하거나, 시스템에 의해서 변경될 때 다음 인텐트가 전달됩니다. 즉, 이 인텐트를 받으면 시간 설정이 변경된 것을 감지할 수 있습니다.
ACTION_TIME_CHANGED
ACTION_TIMEZONE_CHANGED
시간이 흘러 Time이나 Date가 변경될 때는 다음 인텐트가 전달됩니다. 즉, 이 인텐트를 받으면 시간이 지났는지 인식할 수 있습니다.
ACTION_TIME_TICK
ACTION_DATE_CHANGED
각각의 인텐트에 대해서 예제와 함께 알아보겠습니다.
ACTION_TIME_CHANGED
ACTION_TIME_CHANGED
는 시스템의 시간 또는 날짜가 변경될 때 전달됩니다. 사용자가 직접 Settings 앱에서 날짜와 시간을 변경해도 이 인텐트가 전달됩니다.
여기서 시간, 날짜 변경의 의미는 시간이 지나서 변경된 것이 아니라, 시스템 또는 사용자에 의해서 시간, 날짜 설정이 변경되었다는 것을 의미합니다.
다음과 같이 인텐트를 받을 수 있습니다.
val intentFilter = IntentFilter(Intent.ACTION_TIME_CHANGED)
val receiver = object: BroadcastReceiver() {
override fun onReceive(context: Context?, intent: Intent?) {
Log.d("Test", "receive : ${intent.action}")
}
}
Output:
12-25 10:03:51.128 16239 16239 D Test : receive : android.intent.action.TIME_SET
참고로, Intent.ACTION_TIME_CHANGED
의 문자열은 "android.intent.action.TIME_SET"
으로 정의되어있기 때문에 Action을 출력해보면 TIME_SET
으로 출력됩니다.
/**
* Broadcast Action: The time was set.
*/
@SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
public static final String ACTION_TIME_CHANGED = "android.intent.action.TIME_SET";
ACTION_TIMEZONE_CHANGED
Time Zone이 변경될 때 ACTION_TIMEZONE_CHANGED
인텐트가 전달됩니다. 예를 들어, 사용자가 Settings 앱에서 Time Zone을 미국에서 영국으로 변경하면 이 인텐트가 전달됩니다.
val intentFilter = IntentFilter(Intent.ACTION_TIMEZONE_CHANGED)
val receiver = object: BroadcastReceiver() {
override fun onReceive(context: Context?, intent: Intent?) {
Log.d("Test", "receive : ${intent.action}")
}
}
Output:
12-24 14:48:06.800 16239 16239 D Test : receive : android.intent.action.TIMEZONE_CHANGED
ACTION_TIME_TICK
ACTION_TIME_TICK
인텐트는 시간이 변경될 때 전달되며, 1분마다 전달하고 있습니다.
val intentFilter = IntentFilter(Intent.ACTION_TIME_TICK)
val receiver = object: BroadcastReceiver() {
override fun onReceive(context: Context?, intent: Intent?) {
Log.d("Test", "receive : ${intent.action}")
}
}
위 코드를 실행해보면 1분마다 ACTION_TIME_TICK
인텐트가 전달되는 것을 볼 수 있습니다.
12-24 09:57:00.007 14833 14833 D Test : receive : android.intent.action.TIME_TICK
12-24 09:58:00.017 14833 14833 D Test : receive : android.intent.action.TIME_TICK
12-24 09:59:00.188 14833 14833 D Test : receive : android.intent.action.TIME_TICK
12-24 10:00:00.013 16239 16239 D Test : receive : android.intent.action.TIME_TICK
ACTION_DATE_CHANGED
ACTION_DATE_CHANGED
인텐트는 날짜가 변경될 때 전달됩니다. 예를 들면, 11:59 PM
에서 1분이 지나 00:00 AM
이 되면 날짜가 변경되는데, 이 때, 이 인텐트가 전달됩니다.
val intentFilter = IntentFilter(Intent.ACTION_DATE_CHANGED)
val receiver = object: BroadcastReceiver() {
override fun onReceive(context: Context?, intent: Intent?) {
Log.d("Test", "receive : ${intent.action}")
}
}
Settings 앱에서 시간을 11:59 PM
으로 변경하고 1분을 기다리면 인텐트가 전달되는 것을 확인할 수 있습니다.
12-25 00:00:00.412 13074 13074 D Test : receive : android.intent.action.DATE_CHANGED
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 명령어로 로그 출력