Skip to content

Instantly share code, notes, and snippets.

@codenameone
Created February 11, 2015 11:59
Show Gist options
  • Save codenameone/8a4a2779c3d4ea8e7583 to your computer and use it in GitHub Desktop.
Save codenameone/8a4a2779c3d4ea8e7583 to your computer and use it in GitHub Desktop.
Date currentTime = new Date();
long lastRenderedTime = 0;
@Override
public boolean animate() {
if ( System.currentTimeMillis()/1000 != lastRenderedTime/1000){
currentTime.setTime(System.currentTimeMillis());
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment