如何控制android中RelativeLayout中视图的透明度?
我有一个包含一组视图的相对布局,我希望其中一个视图将 出现在所有其他视图前面?我该怎么做?
谢谢
编辑:
好的,我会更具体。 这是我的相对布局的代码,这是我放置所有视图的地方。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#cfff"
android:id="@+id/myMap">
我以这种方式向此相对布局添加视图:
创建不同的视图...... 相对布局.addView(视图);
现在,一些视图相互交叉,当发生这种情况时,我想控制哪个视图位于另一个视图之上。那么我该怎么做呢? 谢谢。
I have a RelativeLayout that holds a set of views and i would like that one of the views will
appear in front of all the other views? how can i do that ?
Thanks
EDIT :
OK, i will be more specific.
here is the code of my relativelayout, this is where i put all of my view.
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#cfff"
android:id="@+id/myMap">
i'm adding view to this relativelayout this way :
creating different views......
relativelayout.addView(view);
now, some of the view intersect with each other and when this happens i want to control which view will be on top of the other one. so how can i do that ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
视图将按照添加的顺序在
Z 轴
上排序。因此,第一个视图将位于布局中的较远位置。添加的下一个视图将位于第一个视图的顶部,依此类推。The view will be ordered on the
Z-axis
in the order that they are added. So the first view will be the further in your layout. The next view added will be on top of the first view and so on.