By Implementing Location Listener,you can override onLocationChanged() which will give current location.
Thanks for replaying, please give me some sample code, am not getting how to do.
public void onLocationChanged(Location loc){
//curent lat and lng
double curentlat=loc.getLattitude();
double currentlng=loc.getLongitude();
}
and required permisions in manifest file.
By using getMyLocation () .
