In Android, I defined an ImageView\'s layout_width to be fill_parent (which takes up the full width of the phone).
ImageView
layout_width
fill_parent
If the imag
For anyone of you who wants the image to fit exact the imageview with proper scaling and no cropping use
imageView.setScaleType(ScaleType.FIT_XY);
where imageView is the view representing your ImageView