歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android教程:簡單的TableLayout布局

簡單的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"><!—如果TableLayout列中的內容不能填面屏幕就用該參數設置使用哪一列填充-->  
  6. 設置成兩行三列  
  7.     <TableRow>  
  8.         <TextView  
  9.             android:text="@string/row1_column1"  
  10.             android:background="#aa0000"  
  11.             android:padding="3dip" />  
  12.         <TextView  
  13.             android:text="@string/row1_column1"  
  14.             android:padding="3dip"  
  15.             android:gravity="center_horizontal"  
  16.             android:background="#00aa00"  
  17.             ></TextView>  
  18.         <TextView  
  19.             android:text="@string/row1_column2"  
  20.             android:gravity="right"  
  21.             android:background="#0000aa"  
  22.             android:padding="3dip" />  
  23.     </TableRow>  
  24.   
  25.     <TableRow>  
  26.         <TextView  
  27.             android:text="@string/row2_column1"  
  28.             android:padding="3dip" />  
  29.         <TextView  
  30.             android:text="@string/row2_column2"  
  31.             android:gravity="right"  
  32.             android:padding="3dip" />  
  33.     </TableRow>  
Copyright © Linux教程網 All Rights Reserved