Does Android ImageView check image rotation?
Does And开发者_如何学Goroid ImageView check image rotation? Or I should do it manually using ExifInterface?
ImageView
just knows only having an image inside, not knowing whatever action of its.
In case you want to rotate image, this is one of my article written about it: http://xjaphx.wordpress.com/2011/06/22/image-processing-rotate-image-on-the-fly/
In case you want to detect whether the image is rotate, create a
CustomImageView
inherits from the baseImageView
, having a flag to check image rotation flag.
精彩评论