Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to add a view to the top of my linear layout. The following code is adding my view to the end of the application layout.

LinearLayout layout = (LinearLayout)findViewById(R.id.root);
layout.addView(adView);

How do I update this code so that my adView is at the top of my app?

share|improve this question

2 Answers

up vote 3 down vote accepted

you can specify at what index you want to addView at.

layout.addView(child, index);
share|improve this answer
Interesting, don't know about such method. – Vyacheslav Jan 9 at 21:11

You can use one of these approaches: 1) add an empty LinearLayout to place where you want to show Ad and then add adView to them. 2) add adView in you xml-layout(if it possible) and hide/show them when you need by using setVisible() method.

Also you can use RelativeLayout instead LinearLayout but it harder to add View to them dynamically.

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.