views:

1445

answers:

1

I am using Listview, i want to scroll down to list's 10 item when view get loaded, how can do that ????

+2  A: 

Try yourListView.setSelection(position)

blacharnia
I am using ArrayAdapter to display custom listitems when user click on more search results in my application i add more items and call <br/>eventsList.setSelection(15);<br/>but it is not working b/c i am having getview method which get called after
Faisal khan