A picture on the wall
When I decided to leave jayway I wanted to leave something behind, I opted for a picture on the wall of some of my colleagues. Unfortunately I didn't manage to…
When I decided to leave jayway I wanted to leave something behind, I opted for a picture on the wall of some of my colleagues. Unfortunately I didn't manage to…
One day while sitting at my desk minding my own code I suddenly found myself under siege by a evil api that only allowed my Set-Cookie header to live for…
I was trying to enforce a input format and then validate the input data before submitting it in a post to our api. In the code samples below I'm using…
Bringing in names like Noah Falstein, Chet Haase and Nick Butcher I knew I was in for a treat going to Droidcon in London. Just a week before going to…
In this post I will showcase how you can combine RxJava, Retrofit and Android Databindings to do a simple lookup of country from a country code. The goal here is…
Some simple examples of what you can do with RxJava in Android. We will assume that our examples lives in the onCreate method of an Activity in a Android app…
The new DataBinding api is pretty easy to use for most simple bindings. When binding to a view that lives in a RecyclerView or other Adapter dependent View you need…
This post is a summary of first impressions of a few android related frameworks that we (the Android team at Jayway) tried out during a competences session recently. Spring for…
Intrinsics are renderscripts shipped with the platform, designed for some common image processing tasks. I will use an example from a real application where we wanted a few different things to…
With Renderscript for Android there are three parts, two that you need to implement yourself, one in Java and one in c99, and then there is a generated api that…
Adapters and recycling The reason for having a ViewHolder or HolderView is to improve performance of AdapterViews. Adapters used by AdapterViews recycles the views that the AdapterView is using to…
This post is outdated and I urge you to go have a look at the official google training material instead. When using Volley you will run into the common problem of trying to cache…
I found this tool, aSqliteManager. It's not the only tool/app of it's kind, there are a few similar looking tools. It's basically a database browser that runs on you android device. So what use…
This post is outdated and I urge you to go have a look at the official google training material instead. Most projects I have worked on needed some sort of network engine, and…