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
- Flutter NativeView
- 플러터 뷰 컨트롤러
- 스위프트 UserDefaults
- 앱 백그라운드 푸시 데이터 저장
- silent push
- 안드로이드 바로가기
- 스위프트 테이블 뷰 셀
- 안드로이드 앨범
- swift sms
- flutter 회전
- 스위프트 카메라
- 스위프트 웹뷰
- 푸시 데이터 저장
- flutter rotate
- 노티피케이션 익스텐션
- 안드로이드 숏컷
- 안드로이드 FCM
- NotificationService Extension
- FlutterView MethodChannel
- 안드로이드 에러
- Flutter UIKitView MethodChannel
- swift autolayout
- Swift flutterview
- 스위프트
- swift 문자
- 앱 꺼졌을 때 푸시 데이터 저장
- native flutter view
- 스위프트 푸시
- 스위프트 앨범
- Swift flutterviewcontroller
Archives
- Today
- Total
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() - inputDate.getTime()) / (60 * 60 * 1000);
long min = (currDate.getTime() - inputDate.getTime()) / (60 * 1000);
if (hour < 24) {
nwFrndCnt++;
isNwFrnd = true;
if (frndLst != null) {
nwFrndLstList.add(frndLst);
}
}
뭐 이런식으로 사용하고 있다.
inputDm은 데이터베이스에 저장된 시간
DATE_FORMAT(fl.input_dm,'%Y-%m-%d %H:%m:%s') AS inputDm
이런식으로 서버에서 보내주고 있고, 그에 맞춰서 SimpleDateFormat을 맞춰준다.
그런 후 Date형식으로 바꿔줘야하는데, 현재 시간의 경우 Date로 얻어낸 것을 Format으로 맞춰주고 다시 parse를 통해 Date형식으로 반환해야한다.
getTime을 통해 비교하며, 기본적으로 60은 분, 혹은 초에 사용되고 1000을 곱해준다.
'Android(기능)' 카테고리의 다른 글
[Android] XML Parsing, URL로부터 XML 파싱하기(RSS 데이터) (0) | 2019.07.05 |
---|---|
[Android] SharedPreference 암호화? 안드로이드 KeyStore에 대한 설명 (2) | 2019.06.28 |
[Android] setLayoutParams에서 width, height를 dp로 바꿀 때 (0) | 2019.05.23 |
[Android] DrawerLayout 사용하기 (1) | 2019.01.28 |
[Android] 리사이클러 뷰(RecyclerView) 사용하기 (0) | 2019.01.25 |