我在屏幕上有一个 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" />