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.

what is the maximum number of rows can listview have?

share|improve this question
Approximately π – SwDevMan81 Feb 4 '10 at 1:04
4  
I'll tell you if you tell me what's the maximum length a piece of string can be. – Eric Lippert Feb 4 '10 at 1:15
2  
If you have to ask, you're probably doing something wrong: blogs.msdn.com/oldnewthing/archive/2007/03/01/1775759.aspx – nick Feb 4 '10 at 1:24
That's a great comment, Nick – Mark Brittingham Feb 4 '10 at 1:41
@Eyla - thanks for accepting my answer as "the" answer. – Mark Brittingham Feb 7 '10 at 3:09

4 Answers

up vote 7 down vote accepted

The maximum number of rows a ListView can have will be constrained by available memory. However, the maximum number of rows you should place in a ListView should be constrained by common sense. A UI will simply be unusable with a ListView that comes anywhere near the actual limit imposed by the computer.

share|improve this answer

In a way, "limitless" for most peoples needs but remember;

"With great power, comes great responsibility".

Although you may be able to go crazy with the amount of rows it doesn't mean you should. Rethink your design to avoid having to ask these kinds of questions, think about the end user as they will be using the application.

share|improve this answer

If you use its virtual capability then I think you're limited by the maximum of int. But for practical purposes, virtual or not, you'll be hitting a memory limit before you hit a limit on the number of rows.

share|improve this answer

The answers above are correct, constrained by available memory for the collection, but seeing as the count property of the items is an integer, I'd reckon you could have atleast 2,147,483,647 items :)

share|improve this answer

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.