1

在我重写的 onDraw() 函数中,我有一个带有两个仪表的画布(仪表是 PNG)。仪表堆叠在彼此的顶部。我希望只显示顶部的一半仪表,同时显示另一半的底部仪表。这是我到目前为止所拥有的:

@Override
public void onDraw(Canvas c){

    int targetWidth=200;
    int targetHeight=200;

    Paint p = new Paint();

    Bitmap bottom = BitmapFactory.decodeResource(getResources(), R.drawable.dashboard_rpm_bottom);
    Bitmap top = BitmapFactory.decodeResource(getResources(), R.drawable.dashboard_rpm_top);

    p.setFilterBitmap(false);

    c.translate(55,320);

    c.drawBitmap(
            bottom,
            new Rect(0, 0, bottom.getWidth(), bottom.getHeight()),
            new Rect(0, 0, targetWidth, targetHeight),
            p);


    p.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_OUT));

    c.drawBitmap(
            top,
            new Rect(0, 0, top.getWidth(), top.getHeight()),
            new Rect(0, 0, targetWidth, targetHeight),
            p);



    }

似乎不起作用,有人有任何想法吗?

4

1 回答 1

2

我能够使用 xfermode DST_OUT 方法做到这一点

于 2011-05-27T18:34:54.543 回答