31

使用 Google Maps Android API V2 时,我将按照Google Play 服务设置文档进行检查,以确保已安装 Google Play 服务,在我的主要活动中使用以下代码:

@Override
public void onResume()
{
      checkGooglePlayServicesAvailability();

      super.onResume();
}

public void checkGooglePlayServicesAvailability()
  {
      int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
      if(resultCode != ConnectionResult.SUCCESS)
      {
          Dialog dialog = GooglePlayServicesUtil.getErrorDialog(resultCode, this, 69);
          dialog.setCancelable(false);
          dialog.setOnDismissListener(getOnDismissListener());
          dialog.show();
      }

      Log.d("GooglePlayServicesUtil Check", "Result is: " + resultCode);
  }

这工作正常。但是,我注意到我放置的一些较旧的 Android 手机(主要运行 2.2)缺少 GooglePlayServices 以及 Google Maps 应用程序本身。

LogCat 会报这个错误:Google Maps Android API: Google Maps application is missing。

问题- 我如何执行与上述类似的检查以检查设备上 Google 地图的可用性?其次,如果用户已经安装了谷歌地图,我认为检查需要确保他们安装的版本与 Android Maps API V2 兼容。

更新 这是我的 setupMapIfNeeded() 方法,它在 onCreate() 结束时调用。这是我想我想确定是否安装了谷歌地图并提醒用户的地方,请参阅 else 块:

private void setUpMapIfNeeded() 
{
    // Do a null check to confirm that we have not already instantiated the map.
    if (mMap == null) 
    {
        // Try to obtain the map from the SupportMapFragment.
        mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.basicMap)).getMap();

        if (mMap != null) 
        {
            mMap.setLocationSource(this);

            mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(44.9800, -93.2636), 10.0f));
            setUpMap();
        }
        else
        {
            //THIS CODE NEVER EXECUTES - mMap is non-null even when Google Maps are not installed
            MapConstants.showOkDialogWithText(this, R.string.installGoogleMaps);
        }
    }
}
4

3 回答 3

55

好吧,经过更多的戳戳和刺激,我意识到我只需要询问 PackageManager 是否安装了谷歌地图。IMO 这应该真正包含在 Google Maps Android API V2 开发人员指南中……会有很多开发人员错过这个案例并让用户感到沮丧。

以下是如何检查是否已安装 Google 地图,如果未安装,则将用户重定向到 Google 地图的 Play 商店列表(请参阅isGoogleMapsInstalled()):

private void setUpMapIfNeeded() {
    // Do a null check to confirm that we have not already instantiated the map.
    if (mMap == null) 
    {
        // Try to obtain the map from the SupportMapFragment.
        mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.basicMap)).getMap();

        if(isGoogleMapsInstalled())
        {
            if (mMap != null) 
            {
                setUpMap();
            }
        }
        else
        {
            Builder builder = new AlertDialog.Builder(this);
            builder.setMessage("Install Google Maps");
            builder.setCancelable(false);
            builder.setPositiveButton("Install", getGoogleMapsListener());
            AlertDialog dialog = builder.create();
            dialog.show();
        }
    }
}

public boolean isGoogleMapsInstalled()
{
    try
    {
        ApplicationInfo info = getPackageManager().getApplicationInfo("com.google.android.apps.maps", 0 );
        return true;
    } 
    catch(PackageManager.NameNotFoundException e)
    {
        return false;
    }
}

public OnClickListener getGoogleMapsListener()
{
    return new OnClickListener() 
    {
        @Override
        public void onClick(DialogInterface dialog, int which) 
        {
            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.google.android.apps.maps"));
            startActivity(intent);

            //Finish the activity so they can't circumvent the check
            finish();
        }
    };
}

我用这些细节写了一篇简短的博客文章:如何检查是否安装了谷歌地图并将用户重定向到 Play 商店

于 2012-12-09T17:35:21.847 回答
4

来自谷歌指南

if (mapIntent.resolveActivity(getPackageManager()) != null) {
    ...
}
于 2016-05-08T01:39:55.253 回答
0

您可以通过调用 MapFragment.getMap() 或 MapView.getMap() 方法并检查返回的对象是否不为空来验证 GoogleMap 是否可用。

公共谷歌地图 getMap()

谷歌地图。如果片段的视图尚未准备好,则为 Null。如果片段生命周期尚未通过 onCreateView(LayoutInflater, ViewGroup, Bundle) 可能会发生这种情况。如果 Google Play 服务不可用,也会发生这种情况。如果之后 Google Play 服务可用,并且 Fragment 已通过 onCreateView(LayoutInflater, ViewGroup, Bundle),再次调用此方法将初始化并返回 GoogleMap。

您可以在此处阅读有关验证地图可用性的信息

于 2012-12-09T14:30:05.573 回答