I'm trying to get my current location and show it on a map.
Class com.google.android.maps.MyLocationOverlay.MyLocationOverlay does most of the work for you.
But it's coming back with a very coarse result that's off by a couple of clicks.
I'm listening for onAccuracyChanged() but that never gets called.
How can I get a more accurate location, when using MyLocationOverlay ?
Peter
PS. manifest has
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:debuggable="true">
<uses-library android:name="com.google.android.maps" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>