Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

method getSupportFragmentManager() is undefined

Am trying to display a map but it displays this error,"The method getSupportFragmentMananger()is undefined for the type main" Please Help. thanks. I am using Google maps ap

package com.maps;

import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;


import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.MapView;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;



import android.app.Activity;

public class main extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        GoogleMap mMap;
        mMap = ((MapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();

        //can pass dynamic variables
        final LatLng place = new LatLng(-37.81319, 144.96298);
       Marker melbourne = mMap.addMarker(new MarkerOptions()
                                  .position(place)
                                  .title("Melbourne")
                                  .snippet("Population: 4,137,400")
                                  .icon(BitmapDescriptorFactory.fromResource(android.R.drawable.bottom_bar)));


    }
}
like image 348
Muli Avatar asked May 06 '13 09:05

Muli


1 Answers

public class main extends Activity

you should use either AppCompatActivity or FragmentActivity, E.g.

public class mai extends AppCompatActivity

instead of

public class main extends Activity
like image 60
Blackbelt Avatar answered Oct 21 '22 10:10

Blackbelt