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.

I don't know if it is possible, but actually I wouldn't see why not.

Can we do a grid view not just with ImageView but with a custom view.

I am trying to make a grid view of a view composed of an ImageView and a TextView.

I know that everything happens in my Adapter getView's function but I can't figure out how to do it.

public View getView(int position, View convertView, ViewGroup parent) {
    View cases = findViewById(R.id.fileUnitLayout);

    if (convertView == null) {
       convertView = new View(mContext);
    } else {
       cases = convertView;
    }

       return cases;
    }

My view has an id of R.id.fileUnitLayout. Let's say my inner TextView has an id of A and my inner ImageView has an id of B. How can I fill them ?

Thank you,

share|improve this question

1 Answer

up vote 2 down vote accepted

You should not need to override getView to accomplish this, necessarily. GridView is an AdapterView so you can provide an adapter that will display what you want via setAdapter

You could, for example, use SimpleAdapter to provide an xml file that is used for each grid view item.

share|improve this answer
But we need to overrides getView method in the adapter class. The SimpleAdapter can only be used for static data.Am I right? – bagusflyer May 15 at 9:53

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.