Reputation: 2663
I have an exit button in my application and I want to properly quit the whole application when the button is clicked. Is exit(0) enough to exit the BlackBerry application completely?
Upvotes: 1
Views: 1019
Reputation: 5704
Use the following code to exit a BlackBerry application programmatically:
System.exit(0);
Upvotes: 2