2

i have a list view when user clicks on an item a dialog opens and shows a list View item's text now i want to add a swipe view to dialog, to let user swipes to the next or previous text of list view's item ?

EC84B4
  • 7,676
  • 4
  • 23
  • 34

1 Answers1

0

Info on how to implement a swipe gesture can be found here (although there are other methods):

Android Swipe on List

So in your case, add the swipe detector to your project, set a click listener on your dialog content somewhere, and in that listener implement your logic on what to replace said dialog's content with. The swipe detector recognizes both left-to-right and right-to-left movement, so adding a previous and next case should be fairly simple.

Community
  • 1
  • 1
Roger Rapid
  • 956
  • 1
  • 8
  • 28