Google Maps Android API V2 check if GoogleMaps are installed on device

后端 未结 3 1313
难免孤独
难免孤独 2020-12-02 10:28

When using Google Maps Android API V2 I\'m following the Google Play Services setup documentation to make a check to ensure that Google Play Services are installed, using th

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-02 11:24

    From Google guide

    if (mapIntent.resolveActivity(getPackageManager()) != null) {
        ...
    }
    

提交回复
热议问题