Hello World!

  • I am a writer, mostly like to write codes and stuff
  • You can find some of my work below

Android Continuous Integration and Delivery — Next level Android development

Android Continuous Integration and Delivery, Everyone is talking about it these days. So what exactly it is and why do you need it? Well these 2 articles can explain better than me.

July 9, 2018 · Amit Bhandari

Extend Image View to allow URL binding in xml directly

If you are using data binding to bind java pojo to view in Android, you must have came across the issue that you can’t really bind image url in xml directly. Android Image View does not support it by default. But you can easily extend Android Image View to create your own custom view which can support it.

April 10, 2018 · Amit Bhandari

Migrating existing SQLite implementation to Room

Room is a persistence library introduce by Google in this year I/0. Room makes it extremely easy to work with SQLite in your android application and worth giving a shot if you are using SQLiteOpenHelper as of now for handling data in your app. Migrating your current implementation to Room is, surprisingly, very easy.

July 14, 2017 · Amit Bhandari

Storing Java objects other than primitive types in Room Database

If you have been following Architectural components introduced in I/0 2017, you must already be familiar with the Room Persistence Library which provides you abstraction layer over SQLite to provide smooth database access and using SQLite with full potential.

July 13, 2017 · Amit Bhandari