• 控件布局_TableLayout


     1 <?xml version="1.0" encoding="utf-8"?>
     2 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3     android:layout_width="fill_parent"
     4     android:layout_height="fill_parent"
     5     android:stretchColumns="0">
     6     <!--android:stretchColumns="0">:表示如果有剩余空间 时 第几列拉伸      0表示第一列,跟java的思想一样-->
     7     <TableRow>
     8         <TextView
     9             android:text="row1_column1"
    10             android:background="#aa0000"
    11             android:padding="3dip" />
    12         <TextView
    13             android:text="row1_column1"
    14             android:padding="3dip"
    15             android:gravity="center_horizontal"
    16             android:background="#00aa00"/>
    17         <TextView
    18             android:text="row1_column2"
    19             android:gravity="right"
    20             android:background="#0000aa"
    21             android:padding="3dip" />
    22     </TableRow>
    23 
    24     <TableRow>
    25         <TextView
    26             android:text="row2_column1"
    27             android:padding="3dip" />
    28         <TextView
    29             android:text="row2_column2"
    30             android:gravity="right"
    31             android:padding="3dip" />
    32     </TableRow>
    33 </TableLayout>
  • 相关阅读:
    Linux进程管理
    GitHub
    MySQL存储过程
    MySQL自定义函数
    MySQL运算符和内置函数
    js类型检测
    防止SQL注入的方法
    PDO数据库抽象层
    PHP操作MySQL的常用函数
    第二周
  • 原文地址:https://www.cnblogs.com/LO-ME/p/3585640.html
Copyright © 2020-2023  润新知