LocationManager cannot find the location with NETWORK_PROVIDER when device is under the network extender coverage.
LocationListener locationListenerNetwork = new LocationListener() {
@Override
public void onLocationChanged(Location newLocation) {
onLocationChanged never gets called if the network extender is being used.
If the device uses the "normal" (not network extender) coverage, then onLocationChanged gets called without any problem.
Does anyone know how to resolve this issue?
The tests were performed using Galaxy S3(v4.0) and Galaxy Note2(v4.1), both on Verizon's network.
Thanks.
LocationListener#onStatusChanged()or the other methods? What doesLocationManager#isProviderEnabled()return when you are in the extended network? – Sam Dec 6 '12 at 23:33