override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?, savedInstanceState: Bundle?): View {
var view: View = inflater?.inflate(R.layout.map_fragment, null)!!
var mapFragment : SupportMapFragment?=null
mapFragment= fragmentManager.findFragmentById(R.id.map) as SupportMapFragment
mapFragment.getMapAsync(this)
return view
}
Logcat:この行のKotlin
FATAL EXCEPTION: main
kotlin.TypeCastException: null cannot be cast to non-null type
com.google.android.gms.maps.SupportMapFragment
at example.com.kotlinexamplebydimple.Mapfragment.onCreateView(Mapfragment.kt:36)
は、エラーが表示されている:あなたはそれに対処しなければならないので、NULL可能であることをmapFragment
を宣言し
mapFragment= fragmentManager.findFragmentById(R.id.map) as SupportMapFragment
はfragmentManager –
それが直接 –