When I first needed to set a message on a ListView that was empty, I tried different methods, but none of them worked, except the one that I will describe…
You might notice the new CardView widget on Android L preview presentation. The view can be used to display text or images and has a nice shadow. You can add…
I have just updated my Android Studio to Android Studio 0.8.2. But, after the update I kept getting these 3 errors while I was trying to run my project: 1. First…
Whenever you need to share an image from the external storage you can use the startActivity method and an Intent to do that. Doing so, the user will be able to…
[Deprecated] This post is now deprecated, the Manifest Merger has changed since my first post. You can find more about this on the android developers site. Manifest file & Gradle…
Recently I had to change the target SDK on one of my applications, but by doing that, I ran into some problems with the Android Canvas. In this application I…
Android’s UI components are not thread safe so one may need to update Views or other UI components from a secondary thread when returning from an asynchronous database query or…