Hello,
I have some table with  custom cell, for example,

<TableLayout
  xmlns:android="http://schemas.android.com/apk/res/android";
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:stretchColumns="*"
  >
  <TableRow>
        <TextView
        android:layout_column="1"
            android:text="open"
            android:padding="3dip"
            android:background="#00f"
            android:gravity="center"/>
        <TextView
            android:text="open2"
            android:gravity="center"
            android:padding="3dip"
            android:background="#f00"
                />
  </TableRow>
  <TableRow>
        <TextView
        android:layout_column="1"
            android:text="open3"
            android:padding="3dip"
            android:background="#00f"/>
        <TextView
            android:text="open4"
            android:gravity="left"
            android:padding="3dip"
            android:background="#f00"/>
        <TextView
            android:text="open5"
            android:gravity="center"
            android:background="#0f0"
            />
  </TableRow>
</TableLayout>

and I want to make "colspan" second cell from first row. How can I
make it?

thanks/

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to