我在屏幕上有一个imageView,我想放置另一个将出现在imageView底部的图像视图(它就像一条小线),我将线条与主图像对齐查看问题是它留下了一个主imageView和线之间的差距很小,
在模拟器中它完美对齐,但在设备中它有点像paddingbottom,我不知道为什么
这是屏幕
http://s2.subirimagenes.com/otros/previo/thump_8473957photoscreen.jpg
带有文字“Manolo”的白色区域应位于底部,但有一点边距
还有代码(全部采用linearLayout垂直方式)
<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" />
答案 0 :(得分:1)
尝试使用here中所述的'adjustViewBounds'参数:
<ImageView
(...)
android:adjustViewBounds="true" />
如果设置为true,ImageView将调整其边界以保留其drawable的纵横比。这可能会解决模拟器和物理设备之间的填充差异。