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
If you want your image occupy the maximum possible space then the best option would be
android:layout_weight="1" android:scaleType="fitCenter"