0

我在屏幕上有一个 imageView,我想放置另一个 imageview,它将出现在 imageView 的底部(就像一条小线),我将线与主 imageView 对齐问题是它之间留有一点边距主 imageView 和行,

在模拟器中它对齐完美,但在设备中它留出一点边距,如 paddingbottom 我不知道为什么

这是屏幕

http://s2.subirimagenes.com/otros/previo/thump_8473957photoscreen.jpg

带有文本“Manolo”的白色区域应该在底部,但有一点边距

还有代码(都在一个线性布局垂直)

     <ImageView
    android:id="@+id/imageView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/inferior"
    android:layout_below="@+id/superior"
    android:paddingLeft="10dp"
    android:paddingRight="10dp"
    android:scaleType="fitXY"
    android:src="@drawable/ic_launcher" />

   <ImageView
    android:id="@+id/imageView4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@id/imageView1"
    android:layout_alignBottom="@+id/imageView1"
    android:layout_centerHorizontal="true"
    android:paddingLeft="10dp"
    android:paddingRight="10dp"
    android:src="@drawable/fondonombretransparencia" />
4

1 回答 1

1

尝试使用此处所述的“adjustViewBounds”参数:

<ImageView
  (...)
  android:adjustViewBounds="true" />

如果设置为 true,ImageView 将调整其边界以保持其可绘制对象的纵横比。这可能会解决您的模拟器和物理设备之间的填充差异。

于 2013-06-04T08:33:22.797 回答