What's the best (recommended) way to create a viewpager in B4X (you know, where you can use your finger through swipe through pages from left to right and back, with small bullets as indicators).
I am not here to decide which is better, but if your are looking for more choices, the TabStripViewPager by Erel is also very good as it is the one I used in the past.
This library is based on the following open source project: https://github.com/astuetz/PagerSlidingTabStrip License: http://www.apache.org/licenses/LICENSE-2.0 It is an alternative to StdViewPager. It is simpler to use and looks better. It is implemented as a custom view. It requires B4A v5.8+...
I am not here to decide which is better, but if your are looking for more choices, the TabStripViewPager by Erel is also very good as it is the one I used in the past.
This library is based on the following open source project: https://github.com/astuetz/PagerSlidingTabStrip License: http://www.apache.org/licenses/LICENSE-2.0 It is an alternative to StdViewPager. It is simpler to use and looks better. It is implemented as a custom view. It requires B4A v5.8+...
Hey, thanks to @KZero for his good zPager class, i was able to extract a few things from it to make this cross platform view. I spend a lot of time in creating views, some views i need by my self, but some views not and to create a high quality view cost a lot of time. If you want to support...
www.b4x.com
but you will need to implement the dots yourself using something like
B4XPageIndicator is a simple and cross platform custom view that looks like this: It indicates the current page. A page can mean many things, it is not limited to TabStripViewPager. How to use: - Add it with the designer. You probably want to set the Base Background to be transparent (Alpha...
B4XPageIndicator is a simple and cross platform custom view that looks like this: It indicates the current page. A page can mean many things, it is not limited to TabStripViewPager. How to use: - Add it with the designer. You probably want to set the Base Background to be transparent (Alpha...
Excellent, thanks! A lot of those B4X views seem to be posted in the B4A section of the forum here... wouldn't it be interesting to add a separate B4X section to add cross compatible libraries?
The goal was to create a cross-platform viewpager based on existing viewpagers. Since AHViewPager and iTabstrip are very different, the view helps to create a unified interface. I spend a lot of time in creating views, some views i need by my self, but some views not and to create a high...