Category: IT
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
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
ToolBar AppBarLayout CoordinatorLayout CollapsingToolBarLayout
AppBarLayout on developer.android.com
Layout Lessons! Better Android Layouts: coordinator layout, constraint layout, percent relative layout. (https://withintent.uncorkedstudios.com/layout-lessons-better-android-layouts-b00f52b0643a)
Hello Toolbar, Goodbye ActionBar
Collapsing Toolbar Layout on antonioleiva.com
Coordinator Layout on habr pdf
CollapsingToolbarLayout with darker imageview (pdf)
Scrolling down triggers refresh instead of revealing the toolbar on stackoverflow.com
Handling Scrolls with CoordinatorLayout
Rambler about CoordinatorLayout
https://medium.com/@zoha131/coordinatorlayout-basic-8040c74cf426
Jetty
- Standalone server
There is no installation procedure for Jetty. Just unzip. Continue reading Jetty