iOS Question KeyboardStateChanged event not triggered ?

marcick

Well-Known Member
Licensed User
Longtime User
What is wrong in this code so the KeyboardStateChanged event is not fired ?
Attached the full project also.
Thanks

B4X:
Sub Process_Globals
    'These global variables will be declared once when the application starts.
    'Public variables can be accessed from all modules.
    Public App As Application
    Public NavControl As NavigationController
    Private Page1 As Page
End Sub

Private Sub Application_Start (Nav As NavigationController)
    NavControl = Nav
    Page1.Initialize("Page1")
    Page1.Title="Main"
    Page1.RootPanel.Color = Colors.White
    Page1.rootpanel.LoadLayout("1")
    NavControl.ShowPage(Page1)
End Sub

Sub Page1_KeyboardStateChanged        ' never fired ?
    Log("Keyb state changed")
End Sub
 

Attachments

  • kb.zip
    2.2 KB · Views: 225
Top