If you are using head version: (0.3.1-SNAPSHOT):
Inside your Activity class define a MyLocationOverlay as below:
MyLocationOverlay myLocationOverlay;
And inside onCreate method and after initializing your mapView:
myLocationMarker = this.getResources().getDrawable(R.drawable.person);
myLocationOverlay = new MyLocationOverlay(this, mapView, myLocationMarker);
myLocationOverlay.enableMyLocation(true);
mapView.getOverlays().add(myLocationOverlay);