In my application i used custom list view adapter. In the list view item i added another layout. because in my service one order have any number of order items. For showing
In your adapter class override these two methods
@Override public int getViewTypeCount() { return getCount(); } @Override public int getItemViewType(int position) { return position; }