I need a way to display my content, but I’m not sure that a listview is the way to go because I have >500 elements that change dynamically the refresh lags a bit. Any other good options I should consider?
Specifically, I have a bunch of names and I need the user to pick one…which leads to a different group of names. I have a search filter at the top..which is primarily what the user will be using. I need to make this look good!
Let me know if this is the wrong place for this…
First thing is not to display 500 choices, users wont be interested in visually searching that.
Try auto-complete (ie wait for at least 2 chars and show matching) or if you want a non-keyboard option maybe break the list into alphabetic chunks, eg A-E, F-J, etc.