如何在android上创建复杂的tablelayout

时间:2010-11-03 14:22:00

标签: android tablelayout

这基本上就是我想要实现的目标:http://i52.tinypic.com/15qelwy.jpg

到目前为止,这是我的main.xml文件

<TableLayout
  android:paddingTop="80sp"
  android:paddingLeft="40sp"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

  <TableRow>
   <TextView
    android:text="@string/questions"
    android:textColor="#000" 
    android:textStyle="bold"
    android:textSize="18dip"
    android:layout_height="100px"
    android:layout_width="100px"/>   
    <ImageButton
     android:id="@+id/button_one"
     android:src="@drawable/button_flat"
     android:layout_width="227px"
     android:background="@null"
     />
    <ImageButton
     android:id="@+id/button_one"
     android:src="@drawable/button_flat"
     android:layout_width="227px"
     android:background="@null"
     />
  </TableRow>
 </TableLayout>

结果并不漂亮,因为它将第二个按钮显示在另一列中。我怎样才能创建两列;第一个是可扩展的,下一个列是否包含多个图像按钮?

感谢。

1 个答案:

答案 0 :(得分:0)

也许是这样的?

<?xml version="1.0" encoding="utf-8"?>

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingTop="80sp"
android:paddingLeft="40sp"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<TableRow>
  <TextView
    android:text="@string/questions"
    android:textColor="#000" 
    android:textStyle="bold"
    android:textSize="18dip"
    android:layout_height="100px"
    android:layout_width="fill_parent"/>

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" >   
        <ImageButton
         android:id="@+id/button_one"
         android:src="@drawable/button_flat"
         android:layout_width="227px"
         android:background="@null"
         />
        <ImageButton
         android:id="@+id/button_one"
         android:src="@drawable/button_flat"
         android:layout_width="227px"
         android:background="@null"
         />
 </LinearLayout>
 </TableRow>
</TableLayout>