Android – Timer, update UI
http://qaru.site/questions/342385/how-to-change-a-textview-every-second-in-android
[code language=”java”]
Timer timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask()
{
public void run()
{
//your code
}
}, delay, period);
[/code]
How to Update the UI in an Android Activity Using Data from a Background Service
https://android-developers.googleblog.com/2007/11/stitch-in-time.html
Inversion in English
To pass a exam
CURRICULUM [kə’rɪkjələm] – учебный план
ATTENDANCE [ə’tendən(t)s] – посещение
COURSE [kɔːs] – курс
GRADE [greɪd] – класс; оценка (амер.)
MARK [mɑːk] – оценка
IDEA community edition, jetty, war, debug, maven
Let’s create a simple java web app by IntelliJ IDEA community edition, Jetty. There is opportunity to debug the app even by IDEA CE.
Continue reading IDEA community edition, jetty, war, debug, maven