it is displaying the list of your friends but you seem to have forgotten to set the "geo"-URI.
You go to the actual Map using the Menu-Button on the emulator. It starts the Map-Activity that show you (and your contacts/friends if you properly set the geo-URI to their notes, as shown in the first Part of the Tutorial)
This is the code taklen from above, that opens the MapActivity:
Using java Syntax Highlighting
- @Override
- public boolean onCreateOptionsMenu(Menu menu) {
- boolean supRetVal = super.onCreateOptionsMenu(menu);
- menu.add(0, 0, getString(R.string.main_menu_open_map));
- return supRetVal;
- }
- @Override
- public boolean onOptionsItemSelected(Menu.Item item) {
- switch (item.getId()) {
- case 0:
- startSubActivity(new Intent(this, FriendFinderMap.class), 0);
- return true;
- }
- return false;
- }
Parsed in 0.032 seconds, using GeSHi 1.0.8.4
You will at least see yourself on the Map
Please tell us if that fixed it
Regards,
plusminus
Regards,
plusminus



.


. While zoomed in, i can see the "Me" walkign around on the map(Blank map).

