I\'m working on creating a swipe-to-dismiss list view adapter. My basic methodology is to wrap the list item\'s view as the second view in a ViewPager and provide the neces
You are saying that you are making each list item a view pager, so that you can implement swiping to delete? If so... no no, this is not what view pager is for. First sorry it is just not intended to be used as an item in a list. Second it is for switching between views, not swiping to delete.
Unfortunately we don't have a sample code to show how to do this, but you can look at the platform's implementation of the notification pane or recent apps to get some ideas.