LayoutInflater.from(context)
vs
context.getSystemService(LAYOUT_INFLATER_SERVICE)
https://stackoverflow.com/a/20995083/9757951
getSystemService
: A LayoutInflater for inflating layout resources in this context.
이 Context에서 Layout Resource를 확장하는 LayoutInflater
LayoutInflater
: Obtains the LayoutInflater from the given context.
Context로 부터 LayoutInflater를 가져온다.
Activity 내부에선 getLayoutInflater() 를 사용한다.
이건 getSystemService()를 사용하는 것과 동일하다.
결론적으론 차이가 없다.
라네
'프로그래밍 > Android' 카테고리의 다른 글
Android Kotlin Fundamentals's Context (0) | 2020.10.20 |
---|---|
Android Firebase FCM (0) | 2020.09.16 |
Android Thread Handler (0) | 2019.04.17 |
Android capture (0) | 2013.11.27 |
Activity를 상속받지 않은(extends 하지 않은) 클래스에서의 intent (0) | 2013.11.20 |