6

I have a view inflated, I can draw it on canvas, but can't seem to position it properly.

LayoutInflater li = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = li.inflate(R.layout.fix_this_recommendation, null);
v.measure(MeasureSpec.getSize(v.getMeasuredWidth()), MeasureSpec.getSize(v.getMeasuredHeight()));
v.layout(400, 400, 400, 400);
v.draw(canvas);

But the view is always at the top left corner. Anyone know why?

Johnny
  • 2,800
  • 6
  • 25
  • 33

4 Answers4

14

Solution is to translate canvas:

canvas.save();
canvas.translate(left, top);            
view.draw(canvas);
canvas.restore();
Peterdk
  • 15,625
  • 20
  • 101
  • 140
3

Each View draws its contents within its own coordinate system, with (0, 0) at the top-left. If you want it to appear elsewhere, you can set a new transformation matrix on your Canvas.

Lawrence D'Oliveiro
  • 2,768
  • 1
  • 15
  • 13
1

because the coordinate system used in the Canvas starts from the top left corner instead of doing that define your Custom View and override the onDraw() method and inside it position your view as you like

confucius
  • 13,127
  • 10
  • 47
  • 66
  • This is what I am doing, the code above is inside the onDraw() function. Am I missing something? – Johnny Feb 09 '12 at 04:38
-1

use drawChild(canvas,child,getDrawingTime()); instead of child.draw(canvas)

drawChild will calc child's top and left margin

Jiang Qi
  • 4,450
  • 3
  • 19
  • 19