- BlackBerry Device Date/Time Update Listener?
- public class MyApp extends UiApplication implements RealtimeClockListener
- {
- public static void main(String[] args)
- {
- ...
- }
- public MyApp()
- {
- addRealtimeClockListener(this);
- }
- public void clockUpdated()
- {
- //it will call every minute
- }
- }