我的布局中提供了MapView
的Google Map API:
<com.google.android.gms.maps.MapView xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/map_view"
...
/>
在我的片段中,我实现了OnMapReadyCallback
:
public class MyFragment extends Fragment implements OnMapReadyCallback {
// onCreate, onCreateView are not showing here but I have them.
@BindView(R.id.map_view)
MapView mMapView;
// this is the method form the interface I am implementing.
@Override
public void onMapReady(GoogleMap googleMap) {
Log.d("MyFragment", "map ready!");
}
}
如您所见,我已覆盖onMapReady(GoogleMap googleMap)
,因为我正在实施OnMapReadyCallback
界面。
但是,如何设置mMapView
的监听器来监听映射就绪事件?
我尝试了mMapView.setOnMapReadyCallback(this)
,但MapView
中没有这样的方法。
答案 0 :(得分:0)