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
When doing this programmatically, be sure to call the setters in the correct order:
imageView.setAdjustViewBounds(true) imageView.setScaleType(ImageView.ScaleType.CENTER_CROP)