• 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. […]

  • 11 December

    How to pass OCPJP java certification with the help of Whizlabs

    I have already shared about Whizlabs OCAJP 8 exam simulator in my previous post. I have looked further to and found it useful too, hence sharing it. OCPJP is tougher exam than OCAJP hence you will need more practice to pass it than OCAJP. What is OCPJP 8? OCPJP 8 stands for Oracle Certified Professional, Java SE 8 […]

  • 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 […]

  • 10 December

    Introduction to AWS Certifications

    In this article, I am going to write about the various AWS certifications and suitable certifications for your profile. Most of the organizations are migrating their applications to the cloud environment, which rises the demand for cloud engineers. The advantage of cloud is that you can minimize the cost and time for maintenance by 1/10 […]

  • 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 […]

  • 03 December

    How to load html string in WebView in Android

    In this post, we are going to see how to load html String in a WebView in Android Android WebView is a android UI widget which is used to open any web url or load html data. It is used to show web page in android activity. In simple words, Android WebView is a View […]