I have a view inflated, I can draw it on canvas, but can\'t seem to position it properly.
LayoutInflater li = (LayoutInflater)context.getSystemService(Contex
Solution is to translate canvas:
canvas.save(); canvas.translate(left, top); view.draw(canvas); canvas.restore();