Android : Map Loading Issue in ViewPager2 ( FragmentStateAdapter )

Android 맵이 로딩 되지 않습니다. (onMapViewInitialized 콜백을 받지 않음)

ViewPager2의 방식으로 Fragment 내부에서

xml : RelativeLayout

Fragment : MapView 객체 생성 및 레이아웃 연결

    val mapView = MapView(this@ProductLocationFragment.context)

    viewDataBinding.flMap.addView(mapView)

    mapView.setMapViewEventListener(this@ProductLocationFragment)


  <RelativeLayout
            android:id="@+id/fl_map"
            android:layout_width="0dp"
            android:layout_height="168dp"
            android:background="@drawable/bg_map_radius_8dp"
            app:layout_constraintEnd_toEndOf="@id/guide_end"
            app:layout_constraintStart_toStartOf="@id/guide_start"
            app:layout_constraintTop_toBottomOf="@id/tv_location"
            >