Reputation: 766
I want to invoke a button click event programmatically in blackberry. How should I do this?
Upvotes: 0
Views: 381
Reputation: 8611
You can use EventInjector.NavigationEvent
EventInjector.invokeEvent(new EventInjector.NavigationEvent(EventInjector.Navig ationEvent.NAVIGATION_CLICK, 0, 0, 0));
Upvotes: 1