将PNG和颜色添加到背景中

时间:2011-06-08 20:09:05

标签: android

我有LinearLayout,我有png我用作瓷砖 - 但我也希望它背后的颜色是白色的。

这可能吗?

我的代码是:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical" android:id="@+id/LinearMain" android:background="@drawable/bcktiles">

和drawable是:

    <?xml version="1.0" encoding="utf-8"?>
 <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/bgsite" android:tileMode="repeat">
    </bitmap>

我不知道把#fff放在哪里

由于

2 个答案:

答案 0 :(得分:6)

您还可以通过执行以下操作创建复合drawable:

drawable/composite.xml

<layer-list 
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="color drawable" />
    <item android:drawable="drawable 1..." />
</layer-list>

对于你的颜色,你可以创建一个可绘制的形状:

<shape 
xmlns:android="http://schemas.android.com/apk/res/android">
  <solid android:color="color" />
</shape>

答案 1 :(得分:0)

在LinearLayout中,如果您正在引用颜色资源,则需要使用android:background="@color/myColor"。如果您不想将其存储为资源,也可以放置android:background="#FFFFFFFF"