帧布局--FrameLayout
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:layout_width="200dp" android:layout_height="200dp" android:gravity="bottom" android:background="#ff0000" android:text="红色"/> <TextView android:layout_width="150dp" android:layout_height="150dp" android:gravity="bottom" android:background="#00ff00" android:text="绿色"/> <TextView android:layout_width="100dp" android:layout_height="100dp" android:gravity="bottom" android:background="#0000ff" android:text="蓝色"/> </FrameLayout>