How do I call 2 consecutive items in a list in a table form next to each other?
Basically I have a list view containing news headlines such that the first headline covers the top portion, the alternate headline the second portion and third headline third portion and the second and the third are consecutive in the list( the first remains as the only headline in the list ). I have programmatically defined it as follows: public class NewsListAdapter extends UselessAdapter { private static final int NUM_TYPES = 3; LayoutInflater mInflater; private static final class Types { public static final int FIRST_HEADLINE = 0; public static final int OTHER_HEADLINE = 1; public static