Yes it is possible. But you are not using the location manager in ArcGis.
ArcGIS has a predefined method, such as LocationListener: OnStatusChangedListener.
See the code below to convert latitude and longitude locations to esri arcGIS MapPoint.
mMapView.setOnStatusChangedListener(new OnStatusChangedListener() { private static final long serialVersionUID = 1L; public void onStatusChanged(Object source, STATUS status) { if (source == mMapView && status == STATUS.INITIALIZED) { LocationService ls = mMapView.getLocationService(); ls.setAutoPan(false); ls.setLocationListener(new LocationListener() { boolean locationChanged = false;
source share