Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my android project, I would like to create a Google Map using java code rather than useing xml, how should I do?

share|improve this question

1 Answer

You can add a Map using MapFragment to an Activity in code. To do this, create a new MapFragment instance, and then call FragmentTransaction.add() to add the Fragment to the current Activity.

   mMapFragment = MapFragment.newInstance();
   FragmentTransaction fragmentTransaction =getFragmentManager().beginTransaction();
   fragmentTransaction.add(R.id.my_container, mMapFragment);
   fragmentTransaction.commit();

For more details check out the GoogleMaps, you will have more idea of implementing the maps.

share|improve this answer
very thanks my friend,I used your code but reported an exception as java.lang.NoClassDefFoundError:com.google.android.gms.maps.MapFragment, and finally I use SupportMapFragment to solve,like this SupportMapFragment fragment = new SupportMapFragment(); getSupportFragmentManager().beginTransaction() .add(R.id.ct, fragment).commit(); – Tsunami Jan 7 at 3:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.