I'm having problem with showing my current location in this code. Can you please tell me how to add code that will zoom and show my current location.
public class MapaActivity extends MapActivity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.mapa);
MapView mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
List<Overlay> mapOverlays = mapView.getOverlays();
Drawable drawable = this.getResources().getDrawable(R.drawable.icon);
HelloItemizedOverlay itemizedoverlay = new HelloItemizedOverlay(drawable,this);
GeoPoint point = new GeoPoint(44900101,14839100);
OverlayItem overlayitem = new OverlayItem(point, "Pin","Test pin");
itemizedoverlay.addOverlay(overlayitem);
mapOverlays.add(itemizedoverlay);