I would like to create a custom View (that will be inflated from XML) which will be drawn at given x\y coordinates.
I know I can create a custom View which will implement onDraw(Canvas canvas)
, but I want this View to be inflated from XML.
On Canvas
I can only draw lines, rectangles and such.. But I want to inflate a whole XML layout..
How can I do that??