Android 开发中 对下上两个图层的相关操作问题

我先上效果图:然后下面的分别是两个图片,第一个是照片,也就是背景层。第二个是罩盖图。下面就是我的源码:packagecom.example.androidtest;imp... 我先上效果图:

然后下面的分别是两个图片,第一个是照片,也就是背景层。第二个是罩盖图。

下面就是我的源码:
package com.example.androidtest;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.PorterDuff;
import android.graphics.PorterDuffXfermode;
import android.util.AttributeSet;
import android.view.View;

public class TestView extends View {
private Paint redPaint;
private Bitmap bmp1, bmp2;

public TestView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}

public TestView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}

public TestView(Context context) {
super(context);
init();
}

private void init() {
bmp1 = BitmapFactory.decodeResource(getResources(), R.drawable.meinv);//背景
bmp2 = BitmapFactory.decodeResource(getResources(), R.drawable.meinv2);//罩盖

redPaint = new Paint();
redPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_OUT));
}

@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawBitmap(bmp1, 0f, 0f, null);
canvas.drawBitmap(bmp2, 0f, 0f, redPaint);
}
}
下面是XML布局代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF">

<com.example.androidtest.TestView
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

</LinearLayout>

在上面代码中我设置两图相交的操作模式是DST_OUT(取下层绘制非交集部分) ,但是我不解的是我设置什么模式它都没效果,就像现在这个,反而会显示出黑色的颜色。现在我要的效果就是保留效果图中的美女部分(六角形内),其余黑色部分全部清掉(清掉之后可以看到白色的背景,实际就是只能看到六角形的美女部分),求大神停下您的脚步!小弟真诚请教!
展开
 我来答
王勃啊
2014-12-15 · TA获得超过1.1万个赞
知道大有可为答主
回答量:5015
采纳率:62%
帮助的人:4083万
展开全部
黑色其实算是canvas板上的。
你想要那种透明可以看到activity的效果是需要在canvas上设置一个bitmap才可以的。
Canvas canvas = new Canvas();
canvas.setBitmap(bm_);

p.setColor(Color.TRANSPARENT);
p.setAntiAlias(true);
p.setStyle(Style.FILL);
p.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_IN));

canvas.save();
Rect r = new Rect(0,0,w*2,h*2);

canvas.drawRect(r, p);
canvas_.drawBitmap(bm_, 0, 0,null);
更多追问追答
追问
onDraw(Canvas canvas) 方法里不是已经有一个canvas了么?在我现在的基础怎么改呢?
大哥,急呀!在线等着啊!能不能清除点呢?
追答

     

    private void init() {

        bmp1 = BitmapFactory.decodeResource(getResources(), R.drawable.meinv);//背景

        bmp2 = BitmapFactory.decodeResource(getResources(), R.drawable.meinv2);//罩盖

        

bm_ = bmp1.copy(Config.ARGB_8888, true);

canvas.setBitmap(bm_);

         

        redPaint = new Paint();

        redPaint.setStyle(Style.FILL);

        redPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.XOR));

    }

     

    @Override

    protected void onDraw(Canvas _canvas) {

        super.onDraw(canvas);

        canvas.drawBitmap(bmp2, 0f, 0f, redPaint);

        _canvas.drawBitmap(bm_, 0, 0, null);

    }

}


 设置了紫色的背景。

百老汇纯9U
2016-07-05 · 超过17用户采纳过TA的回答
知道答主
回答量:60
采纳率:100%
帮助的人:24.2万
展开全部
@Override
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);

//离屏缓存
int sr = canvas.saveLayer(0, 0, bmp1.getWidth(), bmp1.getHeight(), null, Canvas.ALL_SAVE_FLAG);

//绘制原图
canvas.drawBitmap(bmp1, 0, 0, null);

//绘制遮罩层
canvas.drawBitmap(bmp2, 0, 0, mPaint);

mPaint.setXfermode(null);
canvas.restoreToCount(sr);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式