作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在布局中有两个图像。我想在第一个图像的底部边缘曲线中显示第二个图像。任何人都可以告诉如何做叠加图像
谢谢
最佳答案
使用框架布局:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imgFirst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"/>
<ImageView
android:id="@+id/imgSecond"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center"
android:src="@drawable/ic_launcher"/>
</FrameLayout>
关于android - 如何在android布局中覆盖图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28189201/
我是一名优秀的程序员,十分优秀!