• 27 July

    How to fix the Google Play Services Keeps Stopping Error on Android

    Are you worried about this sudden message Unfortunately, Google Play services has stopped popping up?  If it is the case, luckily, you’re just at the right place. This article holds down to every bit of information that you need to know today in order to fix the Google Play services keeps stopping Error. Make sure […]

  • 13 January

    Android SQLite Database CRUD example

    In this tutorial, we are going to learn about Android SQLite database CRUD example. Android SQLite is open source relational database which can be used for performing crud operations. You don’t have to do explicit installation for it. It is available by default in android. Let’s start with simple example: In this example, we will […]

  • 13 December

    Retrofit Android Tutorial

    In this tutorial, we are going to see Retrofit Android tutorial to get data from server. In previous post, we have seen android JSON parsing tutorial which was very simple. If you are not aware about Retrofit, it is android http library used to handle HTTP request.You can treat it as a replacement of AsyncTask in previous […]

  • 12 December

    Android JSON parsing tutorial using Volley

    In this tutorial, we are going to see Android JSON parsing tutorial using Volley. In previous post, we have seen android JSON parsing tutorial which was very simple. In this tutorial, we are going to use external library Volley for sending HTTP request. You can treat it as a replacement of AsyncTask in previous tutorial. […]

  • 10 December

    Android Restful web services tutorial

    In this tutorial, we are going to integrate android with restful web services which return json as response. So we are going to get json from restful web services and then render json response to android custom listview. Example : I have already implemented restful webservices json example. I am going to use same example […]

  • 05 December

    Android Switch button example

    Android Switch Button is UI widget which has only two states i.e. ON and OFF. It allows user to change setting between these two states. Android Switch button is available only in Android 4.0 or later android devices. Example : You can use these buttons to change On and Off state of WiFi or Bluetooth […]

  • 05 December

    Android ToggleButton example

    Android ToggleButton is UI widget which has only two states i.e. ON and OFF. It allows user to change setting between these two states. Example : You can use these button to change On and Off state of WiFi or Bluetooth Source code: Download Github Source code Step 1 :Creating Project Create an android application project named […]

  • 04 December

    Android Spinner Dropdown Example

    In this post, we are going to see about Android Spinner Dropdown example. Android Spinner is a UI widget which have dropdown. Once you click on dropdown , you can select one option among various options. I am going to put static data in android spinner and select one of value from them. Source code: […]

  • 03 December

    Android Custom Toast example

    Android Toast is used to display message for short span of time. Message appears on the screen for short span of time then disappears after some time. We have already used toast in previous examples like Android SeekBar , Android RatingBar . In this post, I am going to demonstrate how to make custom toast […]