AppCompat库有错误,该如何调试?

时间:2019-05-02 05:16:24

标签: java android google-maps build-error

我在我的项目中使用了Google地图。我在构建项目时看到此错误。

error: cannot find symbol method getMap()

我没有关于此错误的任何详细信息,也无法构建我的项目, 这是我的代码:

   mGoogleApiClient = new GoogleApiClient.Builder(ActivityMaps.this)
      .addApi(Places.GEO_DATA_API)
      .enableAutoManage(this, GOOGLE_API_CLIENT_ID, this)
      .addConnectionCallbacks(this)
      .build();
    // Obtain the SupportMapFragment and get notified when the map is ready to be used.
    //SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
    //  .findFragmentById(R.id.map);
    map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
    map.getUiSettings().setZoomGesturesEnabled(true);
    map.setTrafficEnabled(true);
    map.getUiSettings().setZoomControlsEnabled(true);
    map.setMyLocationEnabled(true);
    map.setOnMyLocationButtonClickListener(new GoogleMap.OnMyLocationButtonClickListener() {
      @Override
      public boolean onMyLocationButtonClick() {
        statusCheck();
        return false;
      }
    });

如果可以,请帮助我!谢谢。

0 个答案:

没有答案