我试图显示一个 MapFragment,当我在调试模式下运行我的项目时,我ClassNotFoundException
在地图尝试加载时看到 aa。(没有向 LOGCAT 写入堆栈跟踪)
我唯一看到的是 logcat 中的这个警告
03-11 11:58:52.465: W/dalvikvm(16989): VFY: unable to resolve static field 1363 (common_google_play_services_install_title) in Lcom/google/android/gms/R$string;
当我在调试模式下查看错误时,它看起来像是在寻找类com.google.android.gms.R$string
它甚至没有达到我的断点,onCreate
但onCreateView
地图确实加载了。问题是调用getMap()
总是返回 null
我认为这与谷歌播放服务有关,因为如果我打电话
GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
我遇到同样的问题。我知道我的平板电脑上安装了谷歌播放服务,所以我不知道问题是什么?