I got this ImageView:
<ImageView
android:id="@+id/myImage"
android:sec="@drawable/my_selector"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"
android:scaleType="fitCenter"
android:adjustViewBounds="true" />
The problem is that I keep getting spaces in the sides of the image INSIDE the ImageView. If I change the scale type to fitStart, the image simply moves to the left with a very large space on its right (the sum of the 2 spaces from the sides that were with fitCenter).
How can this space be removed?