我正在使用此版本的 ArcGIS 地图。
'com.esri.arcgisruntime:arcgis-android:100.13.0'
当我在地图片段中打开它时,地图视图会加载正确的地图。但是,当我导航到不同的片段并返回到上一个地图片段时,屏幕是白色的,如下图所示:
我在正确的地方有 onPause、onResume 和 onDestroy
fun onPause() {
mapView?.pause()
}
fun onResume() {
mapView?.resume()
}
fun onDestroy() = mapView?.dispose()
不确定是什么导致了这个问题