9

我有一个不透明的图案(10% 的不透明度),我需要将它与一些颜色结合起来。

是否可以将背景颜色设置为图像?

4

2 回答 2

24

当然。只需使用 LayerListDrawable。

就像是:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item>
        <shape android:shape="rectangle" >
            <solid android:color="#FF00ffff" />
        </shape>
    </item>
    <item>
         <bitmap 
             android:src="@drawable/your_tiled_drawable"
             android:tileMode="repeat" />
    </item>
</layer-list>

将其保存在您的res/drawables目录中,并将其用作背景。

遗憾的是,如果您的应用程序更复杂,有时 tileMode 会无缘无故地取消设置。如果遇到这种情况,则必须在 Java 中重新添加平铺模式。

我通常仍然在xml中设置它,然后执行以下操作:

View v = findViewById(R.id.my_view);
LayerDrawable lld = (LayerDrawable) v.getBackground();
BitmapDrawable tiled = (BitmapDrawable) lld.getDrawable(1);
tiled.setTileModeXY(TileMode.REPEAT, TileMode.REPEAT);
于 2012-07-22T10:01:25.470 回答
0

是的。

你可以使用ImageView. 设置其背景颜色并将半透明图像设置为其来源。

如果要对布局执行此操作,则扩展该布局并在覆盖的 onDraw() 中,绘制背景颜色并与半透明图像混合

Paint p = new Paint();
p.setXfermode(new PorterDuffXfermode(Mode.MULTIPLY));
于 2012-07-22T10:00:57.367 回答