
I want to put a border for this image with padding of 4dp but when I set the background to the color I want I get all that black border on top and bottom. How can I get rid of that so I properly set the border? Image size: 9x5 inches .xml
<ScrollView>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:padding="10dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:text="@string/dealer_picker" />
<Spinner
android:id="@+id/spinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:prompt="@string/dealer_picker" />
<ImageView
android:id="@+id/mapView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#1E1E1E" />
<TextView
android:id="@+id/adresa"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip" />
</LinearLayout>
</ScrollView>