需要将信息布局放在其他布局之上..但布局3的一半,位于布局1之下..
我需要什么.. layout 3 above the others, and in the center of the padding
我有什么...... layout 1 above 3, and layout 3 above layout 2
使用RelativeLayout
我将布局3放在其他布局下面,相反。
是否有选项或类似bring to front
??
还有其他线索吗?
谢谢!
答案 0 :(得分:1)
每个View在Z轴上的位置取决于它在XML文件中的顺序。尝试将所需的布局放在XML文件中的其他两个布局之后。如果要更改View代码在java代码中的位置,可以使用
view.bringToFront();
http://developer.android.com/reference/android/view/View.html#bringToFront%28%29