I\'m using fresco to display images in a list view. however i have an issue.
when i scale my image using methods that maintain aspect ratio like CENTER_CROP, and the
I strongly recommend that you read the Fresco documentation. All of your questions here are already answered there.
Drawee view does not support ImageView attributes (adjustViewBounds, getImageMatrix, etc.). See the documentation.
Read about intrinsic dimensions, again, in the documentation here.
If you really need to dynamically resize your view, with all of the disadvantages that come with that, you can do that by using a controller listener as explained here.
Hope that helps and let me know should you have any more questions.