Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to inflate View on layout, where all my ui elements which are on layout should be visible. Am trying this lines but it is not working am not able to see my background image, button and other images.

MyView view1=new MyView(this);

LayoutInflater inflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
 view1= (MyView) inflater.inflate(R.layout.main, null);

Please help.. Thanks in advance.

share|improve this question
why is this cast for "(MyView)"..? – ngesh Feb 21 '12 at 4:40

3 Answers

up vote 1 down vote accepted

For what you are doing, use

setContentView(R.layout.main);

The reason for not getting your view after inflating is that you need to add that View in the current View somewhere. Currently your inflated view is orphaned.

share|improve this answer
ur rite, bt i have added my view in current view stil am not getting. Actually, i have one class extends View where i draw a lines on my view. in activity layout xml i have added background imageViews and butons.which are not visible. But am able to draw lines perfectly. I thk u got my prob.. – Hema Feb 21 '12 at 6:47

this usually works...

LayoutInflater inflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
 View view1= inflater.inflate(R.layout.main, null);

or

 LayoutInflater inflater = LayoutInflater.from(getApplicationContext);
View view1= inflater.inflate(R.layout.main, null);

and then add this view to the contentView.

Updated:

Assuming you have need to draw a line in your main.xml, let me give you this suggestion. instead of drawing line at runtime by extending View class, create a View in xml like this

<View android:layout_width = "fill_parent"
      android:layout_height = "2dp"  //assuming you want line of 2dp thickness
      android:background= "@android:color/black"/> // define your desired color here 

hope it helps..

share|improve this answer
@ntc.. Myview is my view class. – Hema Feb 21 '12 at 6:26
Myview extends View class . where i can draw the line. And i have set view to contentview but it is not working – Hema Feb 21 '12 at 6:53
@Hema.. why do you even want to do that.. create a line in xml and then set it as content view... not much complex stuff as you are doing.. – ngesh Feb 21 '12 at 7:51
thank you.. I ll do it. – Hema Feb 21 '12 at 17:42

This worked finally.

getWindow().addContentView(view1,
                new ViewGroup.LayoutParams(
                         ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.