package com.phonegap.demo; /* License (MIT) * Copyright (c) 2008 Nitobi * website: http://phonegap.com * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * “Software”), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import android.content.Context; import android.location.Location; import android.location.LocationManager; import android.location.LocationListener; import android.os.Bundle; import android.util.Log; public class NetworkListener implements LocationListener { private Context mCtx; private Location cLoc; private LocationManager mLocMan; private static final String LOG_TAG = "PhoneGap"; GeoListener owner; public NetworkListener(Context ctx, int interval, GeoListener m) { owner = m; mCtx = ctx; mLocMan = (LocationManager) mCtx.getSystemService(Context.LOCATION_SERVICE); mLocMan.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, interval, 0, this); cLoc = mLocMan.getLastKnownLocation(LocationManager.NETWORK_PROVIDER); } public Location getLocation() { cLoc = mLocMan.getLastKnownLocation(LocationManager.NETWORK_PROVIDER); return cLoc; } public void onProviderDisabled(String provider) { // TODO Auto-generated method stub Log.d(LOG_TAG, "The provider " + provider + " is disabled"); } public void onProviderEnabled(String provider) { // TODO Auto-generated method stub Log.d(LOG_TAG, "The provider "+ provider + " is enabled"); } public void onStatusChanged(String provider, int status, Bundle extras) { // TODO Auto-generated method stub Log.d(LOG_TAG, "The status of the provider " + provider + " has changed"); if(status == 0) { Log.d(LOG_TAG, provider + " is OUT OF SERVICE"); } else if(status == 1) { Log.d(LOG_TAG, provider + " is TEMPORARILY_UNAVAILABLE"); } else { Log.d(LOG_TAG, provider + " is Available"); } } /* * The GPS is the primary form of Geolocation in PhoneGap. Only fire the success variables if the GPS is down * for some reason */ public void onLocationChanged(Location location) { Log.d(LOG_TAG, "The location has been updated!"); // if (!owner.mGps.hasLocation()) // { // owner.success(location); // } // FIXME: do filtering owner.success(location); cLoc = location; } public void stop() { mLocMan.removeUpdates(this); } }