I am attempting to stretch a 300x300 image to fill the parent as a background for a sample layout. However, it seems that at most it can reach it's max dimensions as a perfect square. Here is my code.
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/app_background"
android:scaleType="fitCenter"
android:adjustViewBounds="true"/>
There is still white space at both the top and bottom of the app and I want to eliminate that. Any and all solutions to this dilemma would be greatly appreciated.enter image description here