Mylocationoverlay Not Calling Onproviderdisabled
This is my code that behaves a little strange: locationOverlay = new MyLocationOverlay(this, map) { @Override public void onLocationChanged(Location location) { sup
Solution 1:
Once again try to request for location updates when you press yes/no like below. Hope it helps.
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000L, 2000.0f, myLocationListener);
Post a Comment for "Mylocationoverlay Not Calling Onproviderdisabled"