B4i Question B4XPages - Stack Pages - Alexander Stolte    May 05, 2021 Since I'm on IOS, I see a lot of apps that have StackedPages like this.
How can I achieve this with B4XPages?
112873 B4A Question [B4XPages] How to get MainPage Id - William Lancee (first post)    Apr 16, 2022   (1 reaction) Also note that you don't need to close a page before showing another.
The pages are in a stack, so that all you need to do is
B4XPages.ShowPage("mainpage")
No need to close the current page.
Ed: changed queue to stack B4A Question B4XPages.GetManager.mStackOfPageIds - Erel (first post)    Feb 26, 2023 mStackOfPageIds tracks the current stack of pages. The page at the top of the stack is the currently visible page. If you close the top page, it will be removed from the stack and the next page will become the visible page.
It doesn't track the already created pages.
Why do you need to track which B4A Question B4XPages pages ids arraylist - Erel (first post)    Feb 12, 2023   (1 reaction) You can get the ids of the pages in the stack of pages (search for mStackOfPageIds). There is no method to get all the declared page ids. French B4XPages Questions sur la pile des pages - bernardR (first post)    Jul 27, 2022   (1 reaction) Il me semble que le sub suivant convient.
Pouvez-vous me le confirmer ? Merci
Sub StackPages As String
Dim ListPages As List=B4XPages.GetManager.mStackOfPageIds.AsList
Dim str As String
For Each id As String In ListPages
str=str&","&id
Next
str=""
Return str
End B4A Question Back button and stack - AnandGupta (first post)    Oct 24, 2021 No problem to the stack.
All pages are panel. They show or hide as required. B4A Question Captuting Androids back button - consistantly - DKnowles (first post)    Mar 02, 2022   (2 reactions) Just in case someone else made the same silly mistake as me.....
I had acidently used a B4XPages.(targetPage) to close a child page at the bottom of the pages stack and manually go to its parent page (or via logic to home page direct), so no stack existed so the app closed.
Thanks again, all worki B4A Tutorial [B4X] [B4XPages] Pleroma / Mastodon Client - Erel    Feb 24, 2021   (25 reactions) Implemented as a library.
TextUtils - Converts the parsed html data to BBCode.
PleromaFeed - Downloads and parses the Pleroma / Mastodon feeds.
ViewsCache - Manages the video players
RequestsManager - Cross platform class that can be used to cancel currently running HttpJob requests.
OAuth - Impleme B4J Question [B4XPages] How to disable the previous page? - Erel (first post)    Sep 04, 2020 All the pages in the stack are visible in B4J. This is how standard desktop programs work. You can close a page and later explicitly show it back. This can be done in B4XPage_CloseRequested. B4A Question [SOLVED] [B4XPages] Remove page from Stack - LucaMs (first post)    Dec 06, 2020 104064
Declare as public your pages in B4XMainPage - Class_Globals, so you can write something like:
B4XPages.ClosePage(B4XPages.MainPage.MyThirdPage) Page: 1   2   3   4   5   6   7   Powered by ColBERT |