Android Question Odd ActivityPreference issue

andrewtheart

Member
Licensed User
Longtime User
I put a breakpoint on the StartActivity line, and it's never reached, after I click the Settings menu item.

Seems like this shouldn't be a problem...

B4X:
Sub Activity_Create(FirstTime As Boolean)
    ...
 
    Activity.AddMenuItem("Settings","SettingsMenuItemClick")

End Sub

Sub SettingsMenuItemClick
    StartActivity(screen.CreateIntent)
End Sub
 
Top