I have a really simple image within a RelativeLayout and for some reason I am getting extra spacing on the top and bottom which I can\'t remove. How can I clear
If your image view height is match_parent, even if you set android:adjustViewBounds="true" ImageView will add some extra blank space at top and bottom side. so, change ImageView height to wrap_content and set android:adjustViewBounds="true"