Android Integrating PayPal using PHP, MySQL – Part 2
In the previous part Android Integrating PayPal using PHP, MySQL – Part 1, we have covered building the PayPal server side part i.e creating mysql database and writing the PHP services those interacts...
View ArticleAndroid Swipe Down to Refresh ListView Tutorial
You might have noticed that lot of android apps like Twitter, Google+ provides an option to swipe / pull down to refresh it’s content. Whenever user swipes down from top, a loader will be shown and...
View ArticleAndroid adding SMS Verification Like WhatsApp – Part 1
My previous tutorial explains how to implement the user login / registration by collecting user name, email and password. But what if you want to sign up an user using their mobile number like...
View ArticleAndroid adding SMS Verification Like WhatsApp – Part 2
In the 1st part of this article we have learned how to create the required REST API for this app. In this part we are going to see how to build the android app that interact with the API to receive the...
View ArticleAndroid Building Realtime Chat App using GCM, PHP & MySQL – Part 1
Google Cloud Messaging allows you send lightweight messages from the backend server to all the devices whenever there is new data available. This saves lot of user’s battery by avoiding poll request to...
View ArticleAndroid Building Realtime Chat App using GCM, PHP & MySQL – Part 2
The 1st Part covers the server side implementation of the app i.e building the REST API and the server app. In this part we’ll integrate the GCM in your new / existing android app. In the 3rd part the...
View ArticleAndroid Building Realtime Chat App using GCM, PHP & MySQL – Part 3
In the 1st & 2nd parts of this article, we have built the server app including the REST API and admin panel. We also covered the initializing a project with gcm integrated with few primary tests....
View ArticleAndroid Glide Image Library – Building Image Gallery App
Loading an image from internet is pretty easier using Volley library. But here is a much better solution than volley i.e Glide image library. When compared to volley, Glide wins in lot of scenarios in...
View ArticleAndroid Working with Retrofit HTTP Library
We have used Volley as networking library in lot of my articles. Today we are going to look at another awesome library Retrofit to make the http calls. Retrofit is denitely the better alternative to...
View ArticleAndroid Creating Gmail Like Inbox using RecyclerView
Introduction of RecyclerView is the best thing ever happen to android world. You can create stunningly beautiful lists and grids using the RecyclerView. Lot of us are very familiar in rendering the...
View Article