I am using the SDK 100.10.0. When I tried to using to list the layer and the sublayer it has. However, it is always show 0 for sublayer. I know some layer has sublayers.
for(Layer layer: map.getOperationalLayers()){
Log.i(TAG, layer.getName());
Log.i(TAG, layer.getSubLayerContent().size());
}
What is the correct way to retrieve the sublayer info?