Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 17th, 2012  |  syntax: None  |  size: 0.31 KB  |  hits: 36  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. BlackBerry Device Date/Time Update Listener?
  2. public class MyApp extends UiApplication implements RealtimeClockListener
  3. {
  4.   public static void main(String[] args)
  5.   {
  6.     ...
  7.   }
  8.  
  9.   public MyApp()
  10.   {
  11.     addRealtimeClockListener(this);
  12.   }
  13.  
  14.   public void clockUpdated()
  15.   {
  16.     //it will call every minute
  17.   }
  18. }