Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 앱 백그라운드 푸시 데이터 저장
- swift sms
- flutter rotate
- flutter 회전
- 스위프트 UserDefaults
- 스위프트 카메라
- Flutter NativeView
- 노티피케이션 익스텐션
- 앱 꺼졌을 때 푸시 데이터 저장
- Swift flutterviewcontroller
- 안드로이드 FCM
- 푸시 데이터 저장
- 플러터 뷰 컨트롤러
- 스위프트 앨범
- 스위프트
- swift autolayout
- 안드로이드 바로가기
- 안드로이드 숏컷
- silent push
- swift 문자
- 스위프트 테이블 뷰 셀
- NotificationService Extension
- 안드로이드 에러
- Flutter UIKitView MethodChannel
- FlutterView MethodChannel
- 스위프트 웹뷰
- 안드로이드 앨범
- native flutter view
- 스위프트 푸시
- Swift flutterview
Archives
- Today
- Total
목록자바 시간 차이 (1)
Things take time
[Android] 현재 날짜, 형식, 시간, 분 구하기 / 날짜 차이 구하기
데이터베이스에 저장된 시간과 현재 시간을 비교하여, 특정 시간내에 위치할 경우 UI를 추가, 변경하는 로직에 사용했다. 항상 보는데도 기억이 가물가물. SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.KOREA); Date inputDate = simpleDateFormat.parse(inputDm); Date date = new Date(); String currDateStr = simpleDateFormat.format(date); Date currDate = simpleDateFormat.parse(currDateStr); long hour = (currDate.getTime() - input..
Android(기능)
2019. 6. 12. 10:38