Reputation: 24867
Is there any equivalent to J2ME notifydestroyed() on Blackberry? Or are lifespans handled completely differently perhaps?
Upvotes: 0
Views: 94
Reputation: 3505
Lifespans are different, more like a traditional Java application -- the program doesn't exit until it calls System.exit().
(You can run MIDlets in the BlackBerry environment, though, but in most cases you'll want to write to the BlackBerry API and use its app model.)
Upvotes: 1