B4i Question AS TabStrip - how to disable Viewpager scroll animation. - Alexander Stolte (first post)    Dec 27, 2022   (1 reaction) Actually, this is pointless to use the library, because it contains hardly any code. It is smarter to use the ViewPager and TabMenu separately instead of the TabStrip.
This is the code, as you can see it doesn't take any work away from you.
Private Sub Class_Globals
Private gTabMenu As ASTa B4i Library TabStrip - Erel    Nov 26, 2020   (12 reactions) iTabStrip library implements a controller similar to B4A TabStripViewPager.
It is based on XLPagerTabStrip: https://github.com/xmartlabs/XLPagerTabStrip (MIT license).
56317
Setup instructions:
1. Add TabStrip with the designer.
2. Create the tab pages layouts. Make sure to use anchors to allow t B4i Question iTabStrip - set current page without animation - Erel (first post)    Nov 26, 2020   (2 reactions) Sub ChangePageNoAnimation (Index as Int)
Dim no As NativeObject = TabStrip1
no.RunMethod("moveToViewControllerAtIndex:animated:", Array(Index, False))
End Sub
Note that the PageSelected event will not be raised. B4i Question TabStrip question - angel_ (first post)    Jan 01, 2021   (2 reactions) TabStrip1.CurrentPage = 0 B4i Question Caos trying to find an alternative to ASViewPager that is CrossPlatform - Alexander Stolte (first post)    Oct 27, 2021   (1 reaction) Please take a look and tell me if this works for you. I've tried as best as I can to make it consistent across platforms. With the tabstrip you could unfortunately only add page with "LoadLayout", so I had to switch to the AHViewPager.
B4A:
AHViewPager
B4I:
iTabstrip B4i Question (Solved) How to get CustomListView on a page? - hatzisn (first post)    Feb 26, 2021   (1 reaction) This is iTabStrip you are referring to. Not B4XTabStrip. You got me confused. Your code looks correct if TabPages is the list you set in the TabStrip.SetPages. I do not know what is going wrong. Maybe you should get some help from @Erel. Are you sure that the TabPages List is a global variable and t B4i Question iTabstrip signal - 11 crash when setting pages - Sviluppatori Liceo Giovio (first post)    Apr 08, 2019 The tabstrip is defined via the designer in a layout file.
I'm loading this layout into a panel, destroying the panel, recreating the panel and re-loading the layout. Not sure if that counts as creating a new tabstrip.
This works in the example project I attached to the original post, but in the ma B4i Question TabStrip and LoadLayout in iPhone-X - Erel (first post)    Nov 26, 2020   (1 reaction) Try this: https://www.b4x.-bar-on-iphone-xs.107514/#post-672963 B4i Question Can't find Tabstrip library - Andrew (Digitwell) (first post)    Jun 22, 2019   (1 reaction) The forum search works great! :)
https://www.b4x./?query=b4i+tabstrip
Tabstrip is an additional Library. B4i Question iTabStrip - Cristian Achim (first post)    Jul 25, 2024 Hello!
I solved with this:
Sub ChangePageNoAnimation (Index as Int)
Dim no As NativeObject = TabStrip1
no.RunMethod("moveToViewControllerAtIndex:animated:", Array(Index, False))
End Sub
Thank you @Erel!
https://www.b4x.-set-current-page-without-animation.124933/ Page: 1   2   3   4   5   6   7   Powered by ColBERT |