반응형
onCreate is called on initial creation of the fragment. You do your non graphical initializations here. It finishes even before the layout is inflated and the fragment is visible.
onCreateView is called to inflate the layout of the fragment i.e graphical initialization usually takes place here. It is always called some time after the onCreate method.
반응형
'Android' 카테고리의 다른 글
retrofit multipart활용해 서버와 통신시 따옴표가 포함되는 문제 해결 방법 (0) | 2022.11.11 |
---|---|
안드로이드 쓰레드와 핸들러 사용방법 (0) | 2022.10.22 |
안드로이드 정리 (0) | 2022.10.20 |
[안드로이드 & 코틀린] 레트로핏과 인터셉터를 이용하여 API 호출하기 (0) | 2022.10.02 |
[Kotlin] 매개변수가 존재하는 싱글턴 만들기 (0) | 2022.10.01 |