自己创建一个Canvas 方法如下:
//得到一个Bitmap对象,当然也可以使用别的方式得到。
//但是要注意,该bitmap一定要是mutable(异变的)
Bitmap b = Bitmap.createBitmap(100,100, Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(b);
/*先new一个Canvas对象,在调用setBitmap方法,一样的效果
* Canvas c = new Canvas();
* c.setBitmap(b);
*/
/**
* 保存当前的matrix和clip到私有的栈中(Skia内部实现)。任何matrix变换和clip操作都会在调用restore的时候还原。
*
* @return 返回值可以传入到restoreToCount()方法,以返回到某个save状态之前。
*/
public native int save();
/**
* 传入一个标志,来表示当restore 的时候,哪些参数需要还原。该参数定义在Canvas中,参照下面。
* save()方法默认的是还原matrix和clip,但是可以使用这个方法指定哪些需要还原。并且只有指定matrix和clip才有效,其余的几个参数是
* 用于saveLayer()和saveLayerAlpha()方法 的。
*/
public native int save(int saveFlags);
/**
* 回到上一个save调用之前的状态,如果restore调用的次数大于save方法,会出错。
*/
public native void restore();
/**
* 返回栈中保存的状态,值等译 save()调用次数-restore()调用次数
*/
public native int getSaveCount();
/**
* 回到任何一个save()方法调用之前的状态
*/
public native void restoreToCount(int saveCount);
/**
* saveFlags的参数
*/
public static final int MATRIX_SAVE_FLAG = 0x01;//需要还原Matrix
public static final int CLIP_SAVE_FLAG = 0x02;//需要还原Clip
public static final int HAS_ALPHA_LAYER_SAVE_FLAG = 0x04;// 图层的 clip 标记,
public static final int FULL_COLOR_LAYER_SAVE_FLAG = 0x08;// 图层的 color 标记,
public static final int CLIP_TO_LAYER_SAVE_FLAG = 0x10;// 图层的 clip 标记,在saveLayer 和 saveLayerAlpha Android强烈建议必须加上他
public static final int ALL_SAVE_FLAG = 0x1F; //还原所有 一般情况都是使用这个
/*关于saveLayer的具体flags还不大明白它的含义,具体怎么使用在下面例子中*/
public int saveLayer(RectF bounds, Paint paint, int saveFlags)
public int saveLayer(float left, float top, float right, float bottom,Paint paint, int saveFlags)
public int saveLayerAlpha(RectF bounds, int alpha, int saveFlags)
public int saveLayerAlpha(float left, float top, float right, float bottom,int alpha, int saveFlags)
public class LayersTestView extends View {
public static final String TAG = "LayersTestView";
private Paint mPaint;
public LayersTestView(Context context) {
super(context);
init();
}
public LayersTestView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public LayersTestView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
private void init() {
mPaint = new Paint();
mPaint.setAntiAlias(true);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawColor(Color.WHITE);
mPaint.setColor(Color.RED);
canvas.drawCircle(75, 75, 75, mPaint);
canvas.translate(25, 25);
LogUtil.d(TAG, "getCounet2 = " + canvas.getSaveCount());
int count = canvas.saveLayerAlpha(0, 0, 200, 200, 0x88, Canvas.ALL_SAVE_FLAG);
LogUtil.d(TAG, "count = " + count + " , getCounet2 = " + canvas.getSaveCount());
mPaint.setColor(Color.BLUE);
canvas.drawCircle(125, 125, 75, mPaint);
canvas.restore();
canvas.drawCircle(30, 30, 30, mPaint);
LogUtil.d(TAG, "getCounet3 = " + canvas.getSaveCount());
}
}