I\'m in Android Studio and I have a map fragment (com.google.android.gms.maps.SupportMapFragment) that has two markers. One is static and called Target. The other tracks my move
I was using network instead of GPS.
Changed
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);
To
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);
It now tracks my movements smoothly. Thanks to Daniel Nugent for pointing this out to me an another post.
Greg