原CSDN博客已弃用,文章会逐渐迁移过来。

帧布局

    <?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"  
    android:foreground="@mipmap/ic_launcher"  
    android:foregroundGravity="center"  
    >  

    <TextView  
        android:layout_width="400dp"  
        android:layout_height="400dp"  
        android:background="#ff0000"  
        android:layout_gravity="center"  
        />  
    <!--android:layout_gravity="center_horizontal|center_vertical"另一种写法 
    -->  
    <TextView  
    android:layout_width="350dp"  
    android:layout_height="350dp"  
    android:layout_gravity="center"  
    android:background="#00ff00"/>  
    <TextView  
        android:layout_width="300dp"  
        android:layout_height="300dp"  
        android:layout_gravity="center"  
        android:background="#00ffff"/>  
    <TextView  
        android:layout_width="250dp"  
        android:layout_height="250dp"  
        android:layout_gravity="center"  
        android:background="#ff00ff"/>  
    <TextView  
        android:layout_width="200dp"  
        android:layout_height="200dp"  
        android:layout_gravity="center"  
        android:background="#ffff00"  
        android:text="最后一个黄色的文本"  
        android:gravity="right"/>  
</FrameLayout>