This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// setInterval() | |
new Timer().scheduleAtFixedRate(new TimerTask(){ | |
@Override | |
public void run(){ | |
Log.i("interval", "This function is called every 5 seconds."); | |
} | |
},0,5000); | |
// setTimeout() | |
new android.os.Handler().postDelayed( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "yiisoft/yii-project-template", | |
"type": "project", | |
"description": "Yii Framework Project Template", | |
"keywords": [ | |
"yii", | |
"app", | |
"project", | |
"template" | |
], |