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