My code works like this to list all items in my String array - itemsarray

setListAdapter(new ArrayAdapter<String>(this, R.layout.row,
        R.id.label, itemsarray));

However, I know by this call that I only want to list the first X number of items from itemsarray. How can I load only the first X items form itemsarray into the ListAdapter?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

There's no way to do it automatically... you will have to do it manually. You have two alternatives:

// the easy one:
ArrayList<String> someItems = new ArrayList<String>();
for(String element : itemsarray) // add the first 5 elements
    someItems.add(element);
setListAdapter(new ArrayAdapter<String>(this, R.layout.row, R.id.label, someItems));

Or you can create a subclass of ArrayAdapter and override the getCount method returning X. It will make the list think it just have X elements to show.

link|improve this answer
1  
I already was using a subclass for ArrayAdapter and adding @Override public int getCount() { return X; } was exactly what the doctor ordered. Thanks again Cristian! – Tim Wayne Jul 9 '10 at 5:03
feedback

Your Answer

 
or
required, but never shown

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