'Called when the app moved to the foreground
Sub B4XPage_Foreground
LogColor("B4XPage_Foreground", Colors.Yellow)
End Sub
'Called when the app is moved to the background
Sub B4XPage_Background
LogColor("B4XPage_Background", Colors.Yellow)
End Sub
'Called whenever a visible page disappear (pause)
Sub B4XPage_Disappear
LogColor("B4XPage_Disappear", Colors.Cyan)
End Sub
'Called whenever the page becomes visible (resume)
Sub B4XPage_Appear
LogColor("B4XPage_Appear", Colors.Cyan)
End Sub