返回列表 發帖

TableLayout

  1. <TableLayout
  2.             android:layout_width="fill_parent"
  3.         android:layout_height="wrap_content" >
  4.         <TableRow
  5.             android:layout_width="fill_parent"
  6.                 android:layout_height="wrap_content" >
  7.                     <Button
  8.                         android:id="@+id/buttonCalc"
  9.                         android:layout_width="fill_parent"
  10.                         android:layout_height="wrap_content"
  11.                         android:layout_weight="1"
  12.                         android:text="@string/calc_lbl" />
  13.                         <Button
  14.                         android:id="@+id/buttonSugg"
  15.                         android:layout_width="fill_parent"
  16.                         android:layout_height="wrap_content"
  17.                         android:layout_weight="1"
  18.                         android:text="@string/sugg_lbl" />
  19.                 </TableRow>
  20.         </TableLayout>
複製代碼

返回列表