Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
'Private xui As XUI
'Private LastIntent As Intent
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
Private nfc As NFC
End Sub
Sub Activity_Create(FirstTime As Boolean)
ToastMessageShow("Please make sure the device is close", True)
nfc.PreparePushMessage("nfc")
End Sub
Sub nfc_CreateMessage As List
ToastMessageShow("Message transfred", True)
Return Array (nfc.CreateUriRecord("https://www.b4x.com"))
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub