안드로이드 지도sdk - 현위치 아이콘 변경

내 위치 아이콘을 변경하려고 setCustomCurrentLocationMarkerImage 메서드를 사용했는데,
계속 기본 파란점으로만 표시됩니다.
내 위치 아이콘 어떻게 변경하나요???

관련 코드)

        val size = DisplayUtil.getDpToPx(this@PlaceMapActivity, 18)
        mMapView.setCustomCurrentLocationMarkerImage(R.drawable.icon_map_marker_current, MapPOIItem.ImageOffset(size / 2, size / 2))
        mMapView.setCurrentLocationEventListener(this)
        mMapView.currentLocationTrackingMode = MapView.CurrentLocationTrackingMode.TrackingModeOnWithoutHeadingWithoutMapMoving

같은 방식으로 했고, 정상 작동합니다. 다만 xml 파일에서는 작동하지 않고, png일때만 보이네요.