0

目前,我正在使用 google map api V2 通过使用"com.google.android.gms.maps.MapView"将地图显示到我的应用程序中。我的问题是,当特定设备没有安装“谷歌播放服务”时,“获取谷歌播放服务”按钮将自动显示“MapView”。但是,当我单击该按钮时,应用程序被强制关闭,并出现错误“找不到处理 Intent 的活动{act=android.intent.action.VIEW dat=http://play.google.com/store/apps/details?id= com.google.android.gms}”提前致谢。

4

1 回答 1

0

试试这个代码

try{
     put your code here to open Google Play services
   }catch (ActivityNotFoundException e) {
      show some text here
    }
于 2013-01-07T07:33:55.173 回答