I wanna add one xml file and one class which extends View to an single activity so that it work simultaneously.
like below,
- main.xml
- private static class GraphicsView extends View
MyActivity
onCreate()
{
RelativeLayout ll= new RelativeLayout(this);
ll.addView(new GraphicsView(this));
ll.--------->how to add main.xml here?
setContentView(ll);// so that i can write like this
}
please solve this.
Thank you
use layout inflater. Do some thing like this….
Now add this view to ll.
ll.addView(view)…
Thanks.