GaneshP
GaneshP

Reputation: 766

Blackberry invoke button Click Programmatically

I want to invoke a button click event programmatically in blackberry. How should I do this?

Upvotes: 0

Views: 381

Answers (1)

rfsk2010
rfsk2010

Reputation: 8611

You can use EventInjector.NavigationEvent

EventInjector.invokeEvent(new EventInjector.NavigationEvent(EventInjector.Navig ationEvent.NAVIGATION_CLICK, 0, 0, 0));

Upvotes: 1

Related Questions