I've this piece of code:
final ArcGISDynamicMapServiceLayer arcGISFeatureLayer = new ArcGISDynamicMapServiceLayer(URL, null, userCredentials);
and my URL is SocioEconomics/OutorgaAESA (MapServer) .
The map is showing good (like on attachment), but I can't figure out how can I can click on a specific point of map and display the features.
On Google Maps SDK for Android I know a method like onMarkerClick(Marker marker...). But I didn't see anything like this on ArcGIS SDK (for took the info about the point, not just the latitude and longitude).
Pedro Francisco de Sousa Neto
I believe you want to use the identify task:
IdentifyTask | ArcGIS Android 10.2.9 API
This sample should help you:
Identify Task | ArcGIS for Developers
Please let me know if you have any further questions after reviewing the above documentation.