I've a listview which already contain a list of data.
What I'm trying to achieve is when I click one of the ListItem, I want to add another bunch of dataset just below the clicked item.
protected void onListItemClick(ListView l, View v, int position, long id) {
if (position == 0) {
/*
*
* want to add another bunch of data just below postion 0!!!
*
*/
}
}