In my application I have to use sectioned gridview, thatis the first row should be a section header then the second row should contain a gridview having 3 columns and so on.
I can add sections to a gridview having one column.That is here the header added is actually a grid.When I increase the column number to 3 it will not works.
What should I do..Anyone please help me.
Here is my code
public class Gridview_sectionedActivity extends Activity {
GridView gridView1,gridView2,gridView3;
private SeparatedListAdapter adapter;
private final static String[] days = new String[]{"Mon", "Tue", "Wed", "Thur", "Fri"};
static final String[] MOBILE_OS = new String[] {
"Android", "iOS","Windows", "Blackberry", "iOS","Windows" };
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
gridView1 = (GridView) findViewById(R.id.gridView1);
//gridView1.setAdapter(new ImageAdapter(this, MOBILE_OS));
adapter = new SeparatedListAdapter(this);
ImageAdapter imageAdapter = new ImageAdapter(this, MOBILE_OS);
for (int i = 0; i < days.length; i++)
{
adapter.addSection(days[i], imageAdapter);
}
gridView1.setAdapter(adapter);
}
}