我使用相对布局将一个较小的图像叠加在较大的图像上.
我希望较小图像的右下角与较大图像的B-R角重合.我在我的布局xml中使用了边距参数(指定在倾角中测量),但这似乎并不适用于所有设备和分辨率 – 在某些情况下,小图像从边框移动了4-5px.
是否可以指定较小图像的位置而没有像素值?即重力还是什么?
解决方法:
<relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent"> <ImageVIEw androID:ID="@+ID/big_image" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:src="@drawable/bigimage"/> <ImageVIEw androID:ID="@+ID/little_image" androID:layout_wIDth="50dip" androID:layout_height="50dip" androID:layout_alignRight="@ID/big_image" androID:layout_alignBottom="@ID/big_image" androID:src="@drawable/littleimage"/></relativeLayout>
relativeLayout的好处是你可以使用相对位置和尺寸,而不是使用特定的凹陷或像素.在上面的例子中,我只使用了androID:layout_align *参数,以确保两个图像对齐.请记住,我设置了小图像的特定尺寸,但您可以根据需要进行更改.
总结以上是内存溢出为你收集整理的android – 相对布局对齐右下角的图像全部内容,希望文章能够帮你解决android – 相对布局对齐右下角的图像所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)