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 |
Tags
- ScrollView with ConstraintLayout
- 다이얼로그 프래그먼트
- dialog resize
- 데이터바인딩
- dialog fragment
- Retrofit with MVVM
- 리사이클러뷰
- 쉐어드
- programmers
- 레트로핏 MVVM
- 인텐트란?
- location System
- NestedScrollView
- 프로그래머스
- 스크롤뷰 자식 뷰 높이 동적조절
- recyclerview
- Retrofit Kotlin
- lifecycleScope
- ScrollView Child View Height Programmatically
- 레트로핏2
- 안드로이드
- DataBinding
- viewBinding
- dialogfragment singleton
- 다이얼로그 크기조절
- Android
- 뷰바인딩
- 레트로핏 코틀린
- java
- 위치정보확인
Archives
- Today
- Total
목록SimpleDateFormat (1)
안드로이드 세계
[Android] SimpleDateFormat에 대하여
SimpleDateFormat은 Date -> String 형태로 변환할 때 사용되어진다. 예시로 현재시간을 구할 때 다음과 같이 사용되어진다. fun getCurrentTime(): String{ val formatter = SimpleDateFormat("yyyyMMdd HH:mm:ss", Locale.getDefault()) return formatter.format(Calendar.getInstance().time) } 여기에서 주목할점은 format형태로 주어지는 "yyyyMMdd HH:mm:ss" 인데, 해당내용은 다음과같다. y year M Month in year d Day in month H Hour in day (0-23) m Minute in hour s Second in minute..
안드로이드(Android)/코틀린(Kotlin)
2021. 4. 23. 17:22