I cannot get the BarButton Click event to fire. Not sure what is wrong. I used Designer to create a Top Right Button "DONE" with tag "DONE".
B4X:
Sub bAbout_Click
DisableMainView
fAbout = True
About.Initialize("About")
NavControl.ShowPage(About)
End Sub
Sub About_Appear
Msgbox("Appear","")
End Sub
Sub About_Disappear
Msgbox("Disappear","")
End Sub
Sub About_BarButtonClick (Tag As String)
Msgbox(Tag,"")
End Sub