Android ImageView Fixing Image Size
Solution 1:
Fix ImageView's size with dp
or fill_parent
and set android:scaleType
to fitXY
.
Solution 2:
In your case you need to
- Fix the ImageView's size. You need to use dp unit so that it will look the same in all devices.
- Set
android:scaleType
tofitXY
Below is an example:
<ImageView
android:id="@+id/photo"
android:layout_width="200dp"
android:layout_height="100dp"
android:src="@drawable/iclauncher"
android:scaleType="fitXY"/>
For more information regarding ImageView scaleType please refer to the developer website.