AbsoluteLayout(不推荐使用):
<TextView android:layout_x="10px" android:layout_y="10px" android:background="#00FF00" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello" />
View Code
FrameLayou:
相互覆盖的一个列子:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="200dp" android:layout_height="200dp" android:background="#FF0000" /> <TextView android:layout_width="100dp" android:layout_height="300dp" android:background="#00FF00" /> </FrameLayout>
View Code
设置相互重叠的的层叠效果:
<TextView android:layout_width="320dp" android:layout_height="320dp" android:background="#000011" android:layout_gravity="center" //设置控件的相对位置 /> <TextView android:layout_width="280dp" android:layout_height="280dp" android:background="#004433" android:layout_gravity="center" /> <TextView android:layout_width="240dp" android:layout_height="240dp" android:background="#00aa00" android:layout_gravity="center" /> <TextView android:layout_width="200dp" android:layout_height="200dp" android:background="#00dd00" android:layout_gravity="center" />
View Code
转载于:https://www.cnblogs.com/zhang1107/archive/2013/06/07/3125469.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/37728.html