http://stackoverflow.com/questions/1048661/accessing-windows-system-variables-in-java-1-4
Month: July 2013
正野 mobile game tutorial
Cocos2D-X Tutorial for iOS and Android: Space Game
rhythm game tutorial in JAVA
android timer, or ScheduledThreadPoolExecutor
http://steve.odyfamily.com/?p=12
[code]
threadPoolExecutor = new ScheduledThreadPoolExecutor(1);
threadPoolExecutor.scheduleAtFixedRate(new Runnable() {
@Override
public void run() {
loadData();
}
}, 0, 1, TimeUnit.MINUTES);
[/code]
[code]
t = new Timer();
t.schedule(new TimerTask() {
@Override
public void run() {
loadData();
}
}, 0, 60*1000);
[/code]