无法解析符号.getMapAsync

时间:2016-06-09 06:27:15

标签: amazon-web-services android-fragments

我几乎没有开始使用亚马逊地图v2,它一直很好用。现在我想在我的代码中引用地图作为亚马逊网站(https://developer.amazon.com/public/apis/experience/maps/docs-v2/displaying-an-interactive-map-with-the-amazon-maps-api-v2)的解释。

问题是android studio无法识别“getMapAsync”方法。

这是我的代码:

    mMapFragment = (MapFragment) getFragmentManager().findFragmentById(
            R.id.mapFragment);

    // Call .getMapAsync() and pass it an object that implements
    // the OnMapReadyCallback interface.


    mMapFragment.getMapAsync(new OnMapReadyCallback() {
        @Override
        public void onMapReady(AmazonMap amazonMap) {
            // This method is called when the map is ready. The AmazonMap
            // object provided to this method will never be null.

            // Use the map reference to set UI settings and other options.
            amazonMap.getUiSettings().setZoomControlsEnabled(true);
            amazonMap.setTrafficEnabled(true);
        }
    });

在我的build.gradle(项目)中我有这个:

allprojects {
    repositories {
       jcenter()
       mavenLocal()
    }
}

在我的build.gradle(模块)中我包含了这个:

dependencies {
    ...other unrelated dependencies
    compile ('com.amazon.android:amazon-maps-api:2.0')
}

先谢谢你们。

1 个答案:

答案 0 :(得分:0)

嘿伙计们,我发现了我的错误。这很简单。我需要使用SupportMapFragment类而不是MapFragment,并将片段导入更改为" android.support.v4.app.Fragment"。我仍然不确定为什么我不能像在网站上解释的那样使用MapFragment。