24

我在Android中有一个简单的LinearLayout,垂直有两个图像:

<?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"

没有成功。我该怎么做才能删除这些空白边框?

4

3 回答 3

69

我找到了解决方案。我需要将此属性添加到ImageView

android:adjustViewBounds="true"
于 2010-10-10T09:11:02.270 回答
4

在 xml 布局中添加 android:scaleType="fitXY"。

于 2014-04-15T07:03:20.687 回答
0

要在
顶部 ImageView 的线性布局中执行此操作:android:gravity="bottom"
对于底部 ImageView:android:gravity="top"
您确定不想使用 RelativeLayout 吗?如果您试图将两个图像相互对齐,那么这似乎是走下去的路恕我直言。

于 2010-09-01T02:19:21.487 回答