帧布局--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>

 

posted on 2018-03-28 09:08  maogefff  阅读(117)  评论(0编辑  收藏  举报

导航