FrameLayout布局

494 查看

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            tools:context=".MainActivity"
            android:foreground="@mipmap/ic_launcher"
            android:id="@+id/f1"
            android:foregroundGravity="bottom|right">
<TextView
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:background="#ff0e3326"/>
<TextView
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:background="#ffa6ff5d"/>
<TextView
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:background="#ddd"/>
</FrameLayout>