Reputation: 446
Need to put an information layout above the others.. but the half up of layout 3, is below the layout 1..
what i need.. layout 3 above the others, and in the center of the padding
what i have.. layout 1 above 3, and layout 3 above layout 2
using RelativeLayout
i get layout 3 below the others, the opposite.
is there an option or something like bring to front
??
Any other clue?
Thanks!
Upvotes: 1
Views: 116
Reputation: 26
Each View's position on the Z-axis is dependent on its order in the XML file. Try placing the layout you want on top after the other two layouts in your XML file. If you want to change the View's position in your java code, you can use
view.bringToFront();
http://developer.android.com/reference/android/view/View.html#bringToFront%28%29
Upvotes: 1