I am trying to find current location, and this is my code.
LocationManager mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Location is acquired asynchronously. You need to register a LocationListener with your LocationManager, whose onLocationChanged(Location l) will be called whenever a new location information is available.
LocationListener
LocationManager
onLocationChanged(Location l)