У меня есть простая LinearLayout в Android с двумя изображениями по вертикали:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.eataly.android"
android:orientation="vertical"
android:background="@android:color/white"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/img_header1"
/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/img_header2"
/>
</LinearLayout>
Как вы можете видеть по следующей ссылке, я не могу избавиться от пробела сверху и снизуизображения: http://img185.imageshack.us/img185/8484/senzanomev.png
Я перепробовал все мыслимые на LinearLayout и ImageViews, то есть:
android:padding="0px"
android:top="0px"
android:bottom="0px"
android:top="0px"
android:layout_margin="0px"
, но безуспешно.Что я могу сделать, чтобы удалить эти пустые границы?