Create Canvas with multiple tools like Pencil,eraser,Line,oval,triangle,square ,undo,redo etc.
Undo,Redo not working.
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
mBitmap = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
mCanvas = new Canvas(mBitmap);
}