Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);

}

}

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.