While there is no getBitmap()
function for a canvas, since you are making a custom view, what you can do instead is write a function like this inside your view class.
public Bitmap get(){
return this.getDrawingCache();
}
This returns the Bitmap of the view, but it is important that in all your constructors you add this,
this.setDrawingCacheEnabled(true);
Otherwise getDrawingCache
will return null
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…