I am new for android developer. I need to build image view to my apps . Here is the library that i used. https://github.com/chrisbanes/PhotoView
Everything is working good. Here is my question is it possible make it to vertical paging? Instead of swipe left or right to pagging. Please guide me some example also.
Thanks
I'm guessing that the parent to the
PhotoView
library is aViewPager
, which is, as you say, horizontally aligned. There's not native VerticalViewPager, but there are examples of customized solutions that devs have come up with for this. Here's and example of one build from aScrollView
. As a simpler first step you could even try swapping over to the nativeScrollView
as your parent view and then customize from there.