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

Android---->FrameLayout布局方式

时间:2016-07-31 00:11:31      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

技术分享

技术分享

技术分享

 

main.xml布局代码分析-->实现一个渐变图案

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <TextView  
        android:layout_width="320dp" 
        android:layout_height="320dp" 
        android:background="#000011"
        android:layout_gravity="center"
        />
    <TextView  
        android:layout_width="280dp" 
        android:layout_height="280dp" 
        android:background="#004433"
        android:layout_gravity="center"
        />
    <TextView  
        android:layout_width="240dp" 
        android:layout_height="240dp" 
        android:background="#00aa00"
        android:layout_gravity="center"
        />
    <TextView  
        android:layout_width="200dp" 
        android:layout_height="200dp" 
        android:background="#00dd00"
        android:layout_gravity="center"
        />
</FrameLayout>

 

Android---->FrameLayout布局方式

标签:

原文地址:http://www.cnblogs.com/yihujiu/p/5721974.html

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