views:

818

answers:

1

How can you specify a column span in an android's gridview?

I have a gridview that displays 3 images for each row. Sometimes, there are images that have to span 2 rows.

Is it possible to do that in Android? or should I be using a different view?

+1  A: 

TableLayout supports spanning, but GridView does not.

CommonsWare
Thanks, Just found that out.
Soni Ali