requireContext1 [Android][kotlin] requireContext()와 getContext() 최근 Java기반의 Android Application을 개발하다가 kotlin기반으로 개발을 시작했다. 하지만 개발중 Context를 사용하기위해 java기반에서 사용하던 getContext()를 작성해보았지만 해당되는 내용은 없는게 아닌가!! 이건 또 무슨일이지하고 kotlin에서는 context를 가져오는 방법에 대해서 알아보았다. 확인 @NonNull public final Context requireContext() { Context context = getContext(); if (context == null) { throw new IllegalStateException("Fragment " + this + " not attached to a context."); } return context.. 2021. 11. 10. 이전 1 다음