Sub Activity_Create(FirstTime As Boolean)
'In this example the Android manifest is the default version.
'The RTP code functions correctly, the SQL database initialises correctly
'and the layout is loaded and displayed without any errors. However but the 3 menu dots
'are absent And there Is NO menu funtionality.
rp.CheckAndRequest(rp.PERMISSION_READ_EXTERNAL_STORAGE)
Wait For Activity_PermissionResult(Permission As String,Result As Boolean)
If Result = False Then
'Some user dialogue here
End If
If FirstTime Then
SQL.Initialize(File.DirInternal, "MySQLite.db",True)
End If
Activity.LoadLayout("1")
Activity.AddMenuItem("First Choice","mnuFirstChoice")
Activity.AddMenuItem("Second Choice","mnuSecondChoice")
Activity.AddMenuItem("Third Choice","mnuThirdChoice")
End Sub