码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2014-07-03 06:25:46      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   width   

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

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

标签:android   style   blog   http   color   width   

原文地址:http://www.cnblogs.com/tinyphp/p/3818093.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!