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
- 스크롤뷰 자식 뷰 높이 동적조절
- 리사이클러뷰
- 레트로핏 코틀린
- dialog fragment
- java
- 뷰바인딩
- 레트로핏2
- ScrollView Child View Height Programmatically
- 프로그래머스
- programmers
- dialog resize
- Retrofit with MVVM
- ScrollView with ConstraintLayout
- 안드로이드
- DataBinding
- 레트로핏 MVVM
- 인텐트란?
- Android
- 다이얼로그 크기조절
- recyclerview
- 쉐어드
- lifecycleScope
- Retrofit Kotlin
- NestedScrollView
- dialogfragment singleton
- location System
- viewBinding
- 위치정보확인
- 다이얼로그 프래그먼트
- 데이터바인딩
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