android - Implement list views with multiple columns -
i have implement iphone application in jquery mobile , phone gap using list views can implement normal table views, nested table views. <ul data-role="listview" data-inset="true" class="ui-listview"> <li data-role="list-divider">location</li> <!-- section header --------> <li>primary</a></li> <li>primary </li> <li>secondary</a></li> <li>secondary</li> </ul> but these have 1 column, multiple in rows. now need create table (list view) multiple columns. how can create list view multiple columns? try this,i hope work...... <ul> <li> <!--first item --> <table> <tr> <td>heading1</td> <td>meaning1</td> </tr> ...