作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Android Activity 上,我想将图像设置为左下角的背景。操作方法如下:Background Image Placement
但是,我还希望能够指定不是该图像的其余背景具有特定颜色。这可能吗?
(这样我就可以有一个纯色的背景,一个角上有一个小标志)
谢谢,
编辑:我已经完成了一个显然应该可以工作的测试项目,但它对我来说崩溃了。 https://github.com/jarofgreen/AndroidTestBackground E/AndroidRuntime(213): Caused by: android.view.InflateException: Binary XML file line #2: 错误膨胀类
最佳答案
是的,它是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#00FF00"
android:orientation="horizontal" >
<ImageView
android:layout_width="100dip"
android:layout_height="100dip"
android:layout_gravity="bottom|left"
android:background="#FF0000"
android:scaleType="fitXY" />
</LinearLayout>
关于安卓背景 : Image placement with a color,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9162367/
我是一名优秀的程序员,十分优秀!