Hi all,
referring to the attached screens (each screen is a new B4XPage opened by the previous page) I notice that on the iOS version (on the left) the word "Back" appears before the arrow while on the Android version only the arrow icon appears. About this, the strange thing is that only within the first opened page is "Home" instead of "Back".
Since the bar is localized in Italian, I would like to hide the word Back or replace it with the Italian translation but how to do it using B4XPages ? I see that the only method (B4XPages) that affects the top bar settings is .SetTitle (). Correct me if I'm wrong.
B4X - B4XPages code shared between B4A and B4i:
Root = Root1
Root.LoadLayout("home")
B4XPages.SetTitle(Me, "Home")
Root = Root1
Root.LoadLayout("MainCats")
B4XPages.SetTitle (Me, "Scegli una categoria...")
Root = Root1
Root.LoadLayout("subcatslist")
B4XPages.SetTitle (Me, "Cosa cerchi ?")
Root = Root1
Root.LoadLayout("CardList")
B4XPages.SetTitle (Me, "Le attività per te")
I am not in front of my computer but I think in a previous message I have posted a test project which may cover your needs. Check the attached project in the following link:
Here is the situation: I have a Google Map in a second page. The project is not B4XPages but a simple one. The first time I call page2.Show the Page_Resize event fires and in it I call the AddMap sub (as seen in Google Maps tutorial) but if I exit the current page and reenter the Page_Resize...