Google Maps Activity를 Fragment에 복사할 때의 주의
3797 단어 안드로이드AndroidStudioKotlin
시도한 일
빠진 것
대책
대책 전
Fragment.kt
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
val mapFragment = supportFragmentManager
.findFragmentById(R.id.map) as SupportMapFragment
mapFragment.getMapAsync(this)
}
대책 후
Fragment.kt
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
val mapFragment = childFragmentManager //ここが変わっている
.findFragmentById(R.id.map) as SupportMapFragment
mapFragment.getMapAsync(this)
}
원인
공식 문서는 제대로 보지 않으면 안됩니다.
참고가 되는 사이트
Reference
이 문제에 관하여(Google Maps Activity를 Fragment에 복사할 때의 주의), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/n_ku/items/727d634e1f6481eab51d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)