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
- 스위프트 테이블 뷰 셀
- 스위프트 UserDefaults
- 스위프트 웹뷰
- 푸시 데이터 저장
- native flutter view
- 스위프트 카메라
- FlutterView MethodChannel
- 플러터 뷰 컨트롤러
- 앱 백그라운드 푸시 데이터 저장
- flutter rotate
- 노티피케이션 익스텐션
- Swift flutterviewcontroller
- Swift flutterview
- 스위프트
- Flutter NativeView
- NotificationService Extension
- 안드로이드 바로가기
- 앱 꺼졌을 때 푸시 데이터 저장
- 안드로이드 숏컷
- 안드로이드 앨범
- silent push
- 스위프트 앨범
- 안드로이드 에러
- swift autolayout
- 안드로이드 FCM
- swift sms
- Flutter UIKitView MethodChannel
- swift 문자
- flutter 회전
- 스위프트 푸시
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