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

Android------>TableLayout表格布局方式

时间:2016-07-31 09:06:48      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

技术分享

 

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

 

main.xml表格代码分析

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <TableRow>
        <Button
            android:text="Button11"
            />
        <Button
            android:text="Button12"
            />
        <Button
            android:text="Button13"
            />
    </TableRow>
    <TableRow>
        <Button
            android:text="Button21"
            />
        <Button
            android:layout_span="2"
            android:text="Button23"
            />
    </TableRow>
    
</TableLayout>

 

Android------>TableLayout表格布局方式

标签:

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

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