B4A Question Back button disappearing while navigating between pages. - LucaMs (first post)    Mar 05, 2022   (1 reaction) The "back button" allows you to return to the calling page; if you remove that page, page 2 in your case, by calling ShowPageAndRemovePreviousPage, you cannot return to it, of course.
Note that, however, if page 2 calls page 1, the back button would return you to page 2, not to the MainPage, becaus B4J Tutorial [Web] Beginning Telegram Mini Apps - Back & Settings Buttons - Mashiane    Jul 26, 2024   (2 reactions) Hi Fam The back button controls the visibility & navigation when the back button is active. This is like the normal back button in an app. The settings buttons show on the right menu of the bot. This is demonstrated below. Demo https://youtube.com/shorts/oGRG9_XRXCY We define the buttons Priv B4A Question Resume app - Brian Dean (first post)    Mar 17, 2022   (1 reaction) 3. VERY IMPORTANT - the Android "back button" is a problem. If a player moves from Activity1 to Activity2 then the back button will take them back to Activity1 - this is not whar you want to happen. If they close and restart the app after reaching Activity2 then they will restart in Activity2 and wi B4A Question Button back color - klaus (first post)    Jan 17, 2023   (2 reactions) Declare it as a B4XView then you can set the color with:
Button1.Color = Colors.White
or, if you want a border and corner radii.
Button1.SetColorAndBorder(Colors.White, 1dip, Colors.Black, 10dip)
And to get the color with:
BackColor = Button1.Color B4A Question Back button only for change panels - JohnC (first post)    Jun 01, 2020   (1 reaction) Just add this code to the Activity that you want to intercept the back key with:
Sub Activity_KeyPress (KeyCode As Int) As Boolean
Log("Keypress: " & KeyCode)
Select Case KeyCode
Case KeyCodes.KEYCODE_BACK
'....handle the back key event yourself here ...
B4A Question Back key and home key on the device - Erel (first post)    Sep 22, 2020   (1 reaction) Tip: switch to B4XPages and everything will be simpler.
In non-B4XPages the back button destroys the current activity and the home button pauses the activity and shows the home screen.
In B4XPages the back button hides the current page. Pages are never paused or destroyed. The home button moves the B4A Question back button(kiosk) to back in webview - Almog    Feb 10, 2018 hi,
my english is not so good..
someone knows how to do that when i press the back button(on my device), in the webview it will return back(to the before-last page).
thanks B4A Question Back button(on Keypress event) crashing app - An Schi (first post)    May 26, 2017   (2 reactions) If i remember correctly you have to use 'return true or false' properly in this case.
I'm on my phone in the train, so i can't do it for you. But you will find keycode subs examples here with the correct use of return. B4i Question Call Back button programmatically - ThePuiu    Jan 21, 2020 From a page of the application by pressing a button open another page with a form. When saving the form I want to go back to the page from which I opened the form. How can I do this programmatically? (Similar to pressing the Back button on the top left of the page) B4A Question How to press back button programmatically? - Sergey_New (first post)    May 11, 2023 It's a long process :(
The Back button and Activity.Finish close the current Activity, but the previous Activity is opens differently.
The back button performs correctly. Page: 1   2   3   4   5   6   7   Powered by ColBERT |