views:

91

answers:

1

I have implmented pagination and it display 5 records per page. Now suppose I am on page 3 and click 3'rd element then 3'rd element of page-1 is selected.

I am not able to figure out problem as I always create new list object while setting data.

I used below code

temp = new ArrayList();
this.someListAdapter = new SomeListAdapter(this, R.layout.row_facet,temp);
setListAdapter(this.someListAdapter );

Below is signature of SomeListAdapter class.

public class SomeListAdapter extends ArrayAdapter<VoNeighborhood> {
}

Please help....

A: 
Christopher