Is there a way in Android to show just an specific region of an image in an ImageView without preprocessing the bitmap? For instance using any of the available ScaleType (ie: MATRIX)?
Asked
Active
Viewed 407 times
1 Answers
2
Hope this helps you, it contains the different ScaleTypes: http://etcodehome.blogspot.com.es/2011/05/android-imageview-scaletype-samples.html

JesusS
- 1,645
- 1
- 18
- 31
-
thanks, apparently ScaleType.MATRIX setting a fix width and height for the ImageView does the job :) – mollymay Jul 23 '13 at 12:29