fidViewById1 [Android] findViewById는 어떻게 동작하는걸까? 배경 binding을 사용하기 이전에 Android에서는 findViewById를 자주 사용해왔습니다. 하지만 findViewById를 반복적으로 호출하게 될 경우 성능 저하가 발생한다고 합니다. 왜 성능저하가 발생하는걸까요? findViewById Activity - findViewById @SuppressWarnings("TypeParameterUnusedInFormals") @Override public T findViewById(@IdRes int id) { return getDelegate().findViewById(id); } Activity의 경우 getDelegate()를 파고 들어가면 AppCompatDelegate를 생성하여 그것에서 findViewById를 실행합니다. // AppCo.. 2022. 8. 6. 이전 1 다음