More Articles from Archive ~ Programming
Thoughts on Scala Type Inference

There is no any images today, except maybe one. I particularly have a little brainstorming and maybe somebody would be interested too. Let’s try to scarcely touch the Scala type inference on small practical example. In the Scala code snippets below I will provide a three methods with a short explanation in terms of the [...]

Read full story →
IntelliJ IDEA on JRockit

Not so long ago by following Henrik Stahl’s blog, I read this great news: JRockit is Now Free (and Other Java License Updates). Whoa! This is actually a great news! “But why?” you could possible ask me. Well, this is very good question and the answer is very simple – JRockit is a part of [...]

Read full story →
Multi-threaded painting on the Canvas?

Like in Java Swing applications, in Android apps everything is happening, when the system creates a thread of execution for the application, named genuinely “main thread”. Also, this thread is very important, because it’s in charge of dispatching events to the appropriate user interface widgets (like clicks and touches), including drawing events (exactly what we [...]

Read full story →
Custom Android View: the definition

The first question, that is rotating in my head is: why I should implement my own custom View and just not to use one of the standard View’s? Actually, there is not a problem. Most of the Android applications using standard View’s, LayoutGroup’s, only customizing its color schemes, Layout and another general based stuff, applied [...]

Read full story →