Jyosna
Jyosna

Reputation: 4446

android how to add two views into an activity

I wanna add one xml file and one class which extends View to an single activity so that it work simultaneously. like below,

  1. main.xml
  2. 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

Upvotes: 0

Views: 637

Answers (1)

N-JOY
N-JOY

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

Related Questions