I construct a panel(say info panel) containing 10+ labels from the "Activity_Create" using the Activity.AddView function.
I have 3 tabs in my app and the information shown in this panel is common for all the 3 tabs.
In one of my tabs, I have a graph and I give the user an option to save this graph to a USB device.
While saving this graph ( in form of canvas) as an image, I also want to merge/add the content from the info panel to this image.
So in short, I wish to merge a canvas ( from a layout file) and a panel (added as a to the Activity) and save it as an image.
I am able to successfully save the graph as an image but unable to save the panel as an image. Tried various sample codes available in the forum.