Getting the current location of the user for Android -
i building android application , locate phone without of gps or internet. instead, locate phone of cellular signals. how can achieved? ps. kind of new. in advance.
you can request system show location updates based on networkprovider. can done requesting location updates given parameter of network_provider
for instance below:
locationmanager mlocmanager = (locationmanager)contextwrapper.getsystemservice(context.location_service); mlocmanager.requestlocationupdates( locationmanager.network_provider, 60000, 0, this);
below copied android documentation
// register listener location manager receive location updates locationmanager.requestlocationupdates(locationmanager.network_provider, 0, 0, locationlistener); first parameter in requestlocationupdates() type of location provider use (in case, network location provider cell tower , wi-fi based location).
Comments
Post a Comment