B4A Tutorial TabStripViewPager - Better ViewPager - Erel    Jan 24, 2018   (51 reactions)   tags: abStripViewPager, tab, horizontal scroll, Tabs, tabstrip 5oO37Xvl8E8 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+. It is very simple to add a TabStrip to your app. Add the TabStrip with the visual... 14+), TabStripViewPager also requires Android 4+.... B4A Library [B4X] [XUI] AS ViewPager based on xCustomListView - Alexander Stolte    Dec 22, 2022   (42 reactions) B4I. If you use the ViewPager on a 2nd page and still want to close the page with the swipe gesture...Hey,
thanks to @KZero for his good zPager class, i was able to extract a few things from it to make... B4A Code Snippet TabStripViewPager with FontAwesome / Material Icons - Erel    Feb 22, 2017   (14 reactions)   tags: book, Tabs 50754 Step 1: Add a label named lblFontAwesome with the designer. Set its Typeface to FontAwesome and make it invisible. Step 2: Use the code editor Icon Picker to add the icons (right click to find it): TabStrip1.LoadLayout("Page1", "iOS " & Chr(0xF179)) TabStrip1.LoadLayout("Page2", "Android " & Chr(0xF17B)) TabStrip1.LoadLayout("Page3&quo... B4A Question A B4XTabStripViewPager - LucaMs    May 24, 2020   (1 reaction) Is there a B4X View similar to the B4A TabStripViewPager? I would like there was one like that, without the top part. (Thinking better about it, it seems to me that the top part is "hidable" (I think this is a my English neologism š), perhaps setting its height to zero). If it does not exist... who will create it? š (I can't, I don't have B4i)... B4A Library [B4X] [XUI] AS ViewPagerNative based on AHViewPager and iTabstrip - Alexander Stolte    Oct 29, 2021   (8 reactions) must be Object
getCurrentIndex As Int
gets or sets the current index
getNativeViewPager As de... the current index
CurrentIndexAnimated
sets the current index animated
NativeViewPager As de... B4A Example [B4X] AS ViewPager - Auto Play - Alexander Stolte    Sep 5, 2022   (7 reactions) In this example project you can see how to add an auto play feautre to the AS ViewPager. Sub Class_Globals Private tmr_AutoPlay As Timer End Sub Private Sub B4XPage_Created (Root1 As B4XView) tmr_AutoPlay.Initialize("tmr_AutoPlay",2000)'2 seconds tmr_AutoPlay.Enabled = True End Sub Private Sub tmr_AutoPlay_Tick If ASViewPager1.CurrentIndex = ASViewPager1.Size -1 Then ASViewPager1.CurrentIndex2 = 0 Else ASViewPager1.NextPage End If End Sub... B4i Question [AsViewPager] Close keyboard with B4XPages - angel_    May 19, 2022 I use AsTabMenu and AsViewPager with B4XPages, how can I close the keyboard (if it is open) before sliding the panel or clicking the tab?... B4A Question TabStripViewPager hide tab page programmatically. - vfafou    Apr 20, 2017   (2 reactions) Hello! I'm about to use TabStripViewPager for a new project that requires eventually hiding of a specific tab page. I didn't find how could I do that with JavaObject. If it is not implemented, I would like to have it because it's a perfect tab page lib. Thank you in advance!... B4A Class TabStripViewPagerExtendet - Alexander Stolte    Apr 10, 2020   (25 reactions)   tags: Tabs This is the TabStripViewPagerExtendet Class for the TabStripViewPager and my first Class which I publish. The standard library does not offer much customizability and thats the reason why I did this class. The class has many settings and thanks to Erel for sharing methods with the JavaObjects.... TabStripViewPagerExtendet Author: Alexander Stolte Version: 1.01 Methods: IndicatorColor(tabstrip... the implementation: Sub Process_Globals Dim tse As TabStripViewPagerExtendet End Sub Sub... B4A Library ViewPager - Cleaned up ViewPager - corwin42    Aug 9, 2018   (14 reactions) detail. So here we go:
There are 3 objects: PageContainer, ViewPager and VPage.
The PageContainer... something like this in Activity_Create:
Sub Globals
Private VP As ViewPager
Private PC... event.
The ViewPager object is added to the layout of your activity, either by code or by designer. You need to connect the ViewPager with the PageContainer:
'Set the PageContainer for... Page: 1   2   3   4   5   6   |