Search code examples
androidgoogle-mapssupportmapfragment

Google Map:onMapReadyCallback can not be applied to this activity


I am a beginner trying to use google maps, and I have followed the instructions given here: https://developers.google.com/maps/documentation/android-api/map?hl=zh-tw

But I'm stuck at mapFragment.getMapAsync(this) and have been unable to find an answer.

Here is the code:

public class GoogleMapPage extends FragmentActivity   {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.googlemap);
    MapFragment mapFragment = (MapFragment) getFragmentManager().findFragmentById(R.id.map);
    mapFragment.getMapAsync(this)<---it said "onMapReadyCallback can not be applied to this activity;
}

}

And here is the XML:

     <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal">


<fragment
    android:layout_width="300dp"
    android:layout_height="300dp"
    android:name="com.google.android.gms.maps.MapFragment"
    android:id="@+id/map"
    tools:layout="@layout/googlemap" />


Solution

  • You need to make your Activity implement OnMapReadyCallback and override the method void onMapReady(GoogleMap googleMap).

    public class GoogleMapPage extends FragmentActivity implements OnMapReadyCallback   {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.googlemap);
            MapFragment mapFragment = (MapFragment) getFragmentManager().findFragmentById(R.id.map);
            mapFragment.getMapAsync(this) // <---it said "onMapReadyCallback can not be applied to this activity;
        }
    
    
        @Override
        public void onMapReady(GoogleMap googleMap) {
            // Do stuff with the map here!
        }
    
    }