🐛 requireContext IllegalStateExceptionrequireContext()의 원형을 살펴보면 /** * Return the {@link Context} this fragment is currently associated with. * * @throws IllegalStateException if not currently associated with a context. * @see #getContext() */ @NonNull public final Context requireContext() { Context context = getContext(); if (context == null) { ..