Back to project page pyneo-wirelesslocation.
The source code is released under:
GNU General Public License
If you think the Android project pyneo-wirelesslocation listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.pyneo.wirelesslocation; // w w w . ja va 2 s . c o m import android.location.Location; import android.os.IBinder; public interface NetworkLocationProvider { final static String NETWORK_LOCATION_TYPE = "networkLocationType"; final static String IDENTIFIER = "network"; void disable(); void enable(); IBinder getBinder(); boolean isActive(); void onLocationChanged(Location paramLocation); }