作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的项目中,我有一个菜单。对于菜单的设计,我想使用 gridView。为简单起见,假设此 GridView 只有一项。此项目有两个单独的图像(background.png 和 news.png)和一个文本(例如“NEWS”)。
是否可以通过xml或代码将news.png映射到background.png上?
谢谢你帮助我。
最佳答案
是的,您始终可以使用 FrameLayout 来做到这一点 在xml文件中,像这样。
<FrameLayout android:id="@+id/frameLayout1"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView android:id="@+id/imageView1" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:src="@drawable/background"></ImageView>
<ImageView android:id="@+id/imageView2" android:layout_width="wrap_content"
android:layout_gravity="center" android:layout_height="wrap_content"
android:src="@drawable/news"></ImageView>
<TextView android:text="NEWS" android:id="@+id/textView1" android:layout_gravity="bottom|center_horizontal"
android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
</FrameLayout>
关于Android,如何将图像放在另一个图像上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9493855/
我是一名优秀的程序员,十分优秀!