I have an alphebetically sorted list called songtitle and I want to insert divider at this location in the list view. How do I do that?

   adapter = new ArrayAdapter<String>(this,R.layout.song,songtitle);
              int l= 0;
              while(l < adapter.getCount()-1 ){
                  if(songtitle.get(l).charAt(0) == songtitle.get(l+1).charAt(0)){
                      adapter.add(songtitle.get(l));
                     }else{
                      ///Insert Divider Here ////////        
                           l++;
                  }
                 l++;
              }
link|improve this question

32% accept rate
feedback

2 Answers

override the View getView(int position, View convertView, ViewGroup parent) of the ArrayAdapter to give you a different View (inflate a different layout) where you want a divider might work.

See this tutorial to override the getView method.

Hope it help :)

link|improve this answer
Isn't there a method to insert stuff in a listview – Waggoner_Keith Nov 21 '11 at 23:07
I'm afraid not... list is a graphical representation of adapter underlying data. You have exactly one row in the list for each "row" in the adapter. – Jordi Coscolla Nov 21 '11 at 23:14
feedback

You can write custom adapter. Than you can override getView, getItemViewType and getViewTypeCount and set different layout for items group header. Something like:

    public class TestArrayAdapter extends ArrayAdapter<String> {
    LayoutInflater mInflater;
    private static final int
        GROUP_START = 0,
        ITEM = 1,
        COUNT = 2;

    public TestArrayAdapter(Context context, String[] objects) {
        super(context, 0, objects);
        mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View v;
        if (getItemViewType(position) == GROUP_START) {
            v = mInflater.inflate(R.layout.group_start, parent, false);
            ((TextView)v.findViewById(R.id.item_group_header)).setText(
                    Character.toString(getItem(position).charAt(0)));
        } else {
            v = mInflater.inflate(R.layout.item, parent, false);
        }
        ((TextView)v.findViewById(R.id.text)).setText(getItem(position));
        return v;
    }

    @Override
    public int getItemViewType(int position) {
        if (position == 0) return GROUP_START;
        return (getItem(position).charAt(0) == getItem(position - 1).charAt(0)) ?
                ITEM : GROUP_START; 
    }

    @Override
    public int getViewTypeCount() {
        return COUNT;
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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