Reputation: 4446
I wanna add one xml file and one class which extends View to an single activity so that it work simultaneously. like below,
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
Upvotes: 0
Views: 637
Reputation: 7635
use layout inflater. Do some thing like this....
LayoutInflater inflater = (LayoutInflater) adapterContext
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = inflater.inflate(R.layout.your_xmls, null);
Now add this view to ll.
ll.addView(view)...
Thanks.
Upvotes: 2