8

我是 android 开发新手,正在开发我的第一个 android 应用程序。我在布局的 xml 中设置了 View 的背景颜色,如下所示。

android:background="@+color/bgColor"

现在,我有一个全尺寸的透明背景图像,我想将其放在背景上,然后将其他元素放在该图像上。

有没有办法可以在同一布局中同时使用背景颜色和背景图像。

提前致谢。

4

2 回答 2

13

您可以使用带有背景颜色的 ImageView:

<ImageView
    layout_width="match_parent"
    layout_height="match_parent"
    src="@drawable/myImage"
    background="@color/myBgColor" />

另一种选择是在布局的根元素中设置背景颜色,并将 src 保留在 ImageView 中。

于 2012-07-15T08:14:53.877 回答
0

我正在使用AppCompatImageView. 在此背景色中,可以使用以下属性设置。

android:backgroundTint="@color/colorPrimary"
于 2017-01-01T14:43:24.960 回答