Android:控件布局(单帧布局)FrameLayout

时间:2014-07-03 06:25:46   收藏:0   阅读:248

FrameLayout:所有控件位于左上角,并且直接覆盖前面的子元素。

实例:

 bubuko.com,布布扣

<?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_gravity="center"
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="80%" />

    <ProgressBar
        android:layout_gravity="center"
        android:id="@+id/progressBar1"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="160dp"
        android:layout_height="160dp" />

</FrameLayout>

 

Android:控件布局(单帧布局)FrameLayout,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!