我是靠谱客的博主 时尚天空,最近开发中收集的这篇文章主要介绍android 高德地图  出现 Attempt to read from field ‘android.view.Surface android.view.ViewRootImpl.m。。。项目场景:问题描述:原因分析:解决方案:,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

项目场景:

android 高德地图  出现 Attempt to read from field 'android.view.Surface android.view.ViewRootImpl.m。。。


问题描述:

将高德地图嵌入到fragment,然后切换页面时一直出现Attempt to read from field 'android.view.Surface android.view.ViewRootImpl.m。。。报错却正常运行。。。。


原因分析:

我经过多次debug,发现时 高德的问题。。。。开玩笑哈哈哈


解决方案:

在对应的xml文件中

<com.amap.api.maps.MapView
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

将MapView 改成TextureMapView即可,即改成如下

<com.amap.api.maps.TextureMapView
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

最后

以上就是时尚天空为你收集整理的android 高德地图  出现 Attempt to read from field ‘android.view.Surface android.view.ViewRootImpl.m。。。项目场景:问题描述:原因分析:解决方案:的全部内容,希望文章能够帮你解决android 高德地图  出现 Attempt to read from field ‘android.view.Surface android.view.ViewRootImpl.m。。。项目场景:问题描述:原因分析:解决方案:所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部