Once you get a reference to the map, use the setMyLocationEnabled.
mGoogleMap.setMyLocationEnabled(true);
You should declare the following permissions in AndroidManifest.xml:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />