1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
public LocationManager locationManager;
public Location locationGPS;
public Location locationNetWork;
LocationListener locationListener;
public Location setUpLocationNetwork()
{
locationListener= new LocationListener() {
public void onStatusChanged(String provider, int status, Bundle extras) {
// TODO Auto-generated method stub
}
public void onProviderEnabled(String provider) {
// TODO Auto-generated method stub
}
public void onProviderDisabled(String provider) {
}
public void onLocationChanged(Location locations) {
locationNetWork=locations;
}
};
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 100, 0, locationListener);
return locationNetwok;
} |