Category Archives: Android Development
Using Picasso in Kotlin
Caching images in android is key for performance issues. We can write our own AsyncTask to manage it well or use Picasso with one-line of code:
1 |
Picasso.with(context).load(path).into(imageView); |
When we develop our app in Kotlin we can make it smarter using Extension Properties.
Kotlin for Android
I am sharing slides from my yesterday’s presentation on Mobile Warsaw #27.
Programmers day Android app in Kotlin
In view of the fact that today we celebrate Programmer Day, I decided to write a simple app for this event in Android Platform using Kotlin.
Sending Android Logs with Live Templates in IntelliJ IDEA & Android Studio
As professional developers we are constantly looking for productive tips to save our precious time. IntelliJ IDEA comes with many tricks and shortcuts. One of them are Live Templates. Live templates are predefined code fragments, which allow us to code faster and finally to become more productive. We can create our custom live templates and edit existing.