zoukankan      html  css  js  c++  java
  • 表格布局tabelLayout

    表格布局tabelLayout

    一、简介

    二、实例

    <!-- 这个tableRow里面有两个组件,所以是两列 -->
    <!-- 这个tableRow里面有三个组件,所以是三列 -->

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3     android:layout_width="match_parent"
     4     android:layout_height="match_parent" >
     5     
     6     <!-- 表格布局主要有tablerow属性,要几列就在里面添加几个控件即可 -->
     7     <TableRow
     8          android:layout_width="match_parent"
     9          android:layout_height="wrap_content"
    10         >
    11         <!-- 这个tableRow里面有两个组件,所以是两列 -->
    12         <TextView
    13             android:layout_width="wrap_content"
    14             android:layout_height="wrap_content"
    15             android:text="1"
    16             android:layout_weight="1"
    17             android:gravity="center_horizontal" 
    18             android:textSize="50sp"
    19             />
    20         <TextView
    21             android:layout_width="wrap_content"
    22             android:layout_height="wrap_content"
    23             android:text="2"
    24             android:layout_weight="1"
    25             android:gravity="center_horizontal" 
    26             android:textSize="50sp"
    27             />
    28     </TableRow>
    29     
    30     <!-- 第二行 -->
    31     <TableRow
    32          android:layout_width="match_parent"
    33          android:layout_height="wrap_content"
    34         >
    35         <!-- 这个tableRow里面有三个组件,所以是三列 -->
    36         <TextView
    37             android:layout_width="wrap_content"
    38             android:layout_height="wrap_content"
    39             android:text="21"
    40             android:layout_weight="1"
    41             android:gravity="center_horizontal" 
    42             android:textSize="50sp"
    43             />
    44         <TextView
    45             android:layout_width="wrap_content"
    46             android:layout_height="wrap_content"
    47             android:text="22"
    48             android:layout_weight="1"
    49             android:gravity="center_horizontal" 
    50             android:textSize="50sp"
    51             />
    52         <TextView
    53             android:layout_width="wrap_content"
    54             android:layout_height="wrap_content"
    55             android:text="23"
    56             android:layout_weight="1"
    57             android:gravity="center_horizontal" 
    58             android:textSize="50sp"
    59             />
    60     </TableRow>
    61     
    62 
    63 </TableLayout>
  • 相关阅读:
    tlb、tlh和tli文件的关系
    String算法
    Reverse A String by STL string
    windows内存管理复习(加深了理解得很!)
    [转载]有关DLL中New和外部Delete以以及跨DLL传递对象的若干问题
    顺势工作时间
    C++箴言:绝不在构造或析构期调用虚函数
    inline函数复习
    从编译器的角度更加深入考虑封装的使用
    复习:constructor和destructor的compiler实现
  • 原文地址:https://www.cnblogs.com/Renyi-Fan/p/7277658.html
Copyright © 2011-2022 走看看