peacemaker Expert Licensed User Longtime User Oct 1, 2022 #1 Hi, All How to understand where we are now in the app ? How to understand if some page is visible now ?
Hi, All How to understand where we are now in the app ? How to understand if some page is visible now ?
agraham Expert Licensed User Longtime User Oct 1, 2022 #2 Look at GetTopPage in B4XPagesManager Upvote 1
peacemaker Expert Licensed User Longtime User Oct 2, 2022 #3 But how to check some Page among secondary ones ? In advance, if was already opened (and visible) Upvote 0
P PaulMeuris Active Member Licensed User Oct 2, 2022 #4 Uncomment the line in the Initialize method of the B4XMainPage B4XMainPage initialize: Public Sub Initialize B4XPages.GetManager.LogEvents = True End Sub In the log panel you can see which page appears and disappears. *** Service (starter) Create *** ** Service (starter) Start ** ** Activity (main) Create, isFirst = true ** *** mainpage: B4XPage_Created *** mainpage: B4XPage_Appear ** Activity (main) Resume ** *** folders: B4XPage_Created [mainpage] *** mainpage: B4XPage_Disappear [mainpage] *** folders: B4XPage_Appear [mainpage] *** folders: B4XPage_Disappear [mainpage, folders] *** mainpage: B4XPage_Appear [mainpage, folders] Click to expand... Upvote 0
Uncomment the line in the Initialize method of the B4XMainPage B4XMainPage initialize: Public Sub Initialize B4XPages.GetManager.LogEvents = True End Sub In the log panel you can see which page appears and disappears. *** Service (starter) Create *** ** Service (starter) Start ** ** Activity (main) Create, isFirst = true ** *** mainpage: B4XPage_Created *** mainpage: B4XPage_Appear ** Activity (main) Resume ** *** folders: B4XPage_Created [mainpage] *** mainpage: B4XPage_Disappear [mainpage] *** folders: B4XPage_Appear [mainpage] *** folders: B4XPage_Disappear [mainpage, folders] *** mainpage: B4XPage_Appear [mainpage, folders] Click to expand...
peacemaker Expert Licensed User Longtime User Oct 2, 2022 #5 PaulMeuris said: you can see which page appears and disappear Click to expand... but it needs to check in the app code Upvote 0
PaulMeuris said: you can see which page appears and disappear Click to expand... but it needs to check in the app code