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

     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         android:layout_width="match_parent"
     8         android:layout_height="wrap_content" >
     9 
    10         <TextView
    11             android:layout_width="0dip"
    12             android:layout_height="wrap_content"
    13             android:layout_weight="1"
    14             android:gravity="center"
    15             android:text="@string/hello"
    16             android:textSize="30sp" />
    17 
    18         <TextView
    19             android:layout_width="0dip"
    20             android:layout_height="wrap_content"
    21             android:layout_weight="1"
    22             android:gravity="center"
    23             android:text="@string/hello"
    24             android:textSize="30sp" />
    25     </TableRow>
    26 
    27     <TableRow
    28         android:layout_width="match_parent"
    29         android:layout_height="wrap_content" >
    30 
    31         <TextView
    32             android:layout_width="0dip"
    33             android:layout_height="wrap_content"
    34             android:layout_weight="1"
    35             android:gravity="center"
    36             android:text="@string/hello"
    37             android:textSize="30sp" />
    38 
    39         <TextView
    40             android:layout_width="0dip"
    41             android:layout_height="wrap_content"
    42             android:layout_weight="1"
    43             android:gravity="center"
    44             android:text="@string/hello"
    45             android:textSize="30sp" />
    46     </TableRow>
    47 
    48     <TableRow
    49         android:layout_width="match_parent"
    50         android:layout_height="wrap_content" >
    51 
    52         <TextView
    53             android:layout_width="0dip"
    54             android:layout_height="wrap_content"
    55             android:layout_weight="1"
    56             android:gravity="center"
    57             android:text="@string/hello"
    58             android:textSize="30sp" />
    59 
    60         <TextView
    61             android:layout_width="0dip"
    62             android:layout_height="wrap_content"
    63             android:layout_weight="1"
    64             android:gravity="center"
    65             android:text="@string/hello"
    66             android:textSize="30sp" />
    67     </TableRow>
    68 
    69 </TableLayout>

    表格布局

  • 相关阅读:
    提高程序开发效率的文章
    动网代码备忘录
    asp.net 优化ASP.NET应用程序性能研究与探讨
    如何提高写程序的效率与减少 bug 的错误率
    .NET之默认依赖注入
    linux挂载windows共享文件夹
    如何修改数据库时区
    Oracle 数据库11g新特性之高效 PL/SQL 编码
    Oracle Data Guard 理论知识
    (转)关于PL/SQL Developer中对存储过程add debug information
  • 原文地址:https://www.cnblogs.com/danwuxinbolg/p/4761784.html
Copyright © 2011-2022 走看看