Swiping views using Android Tab Layout with swipe able Fragments is the easiest and fastest way to switch views. Many famous apps like whatsapp uses Tab Layout to switch between calls, messages and statuses. Android Material Design library provides Tab Layout widget. In this tutorial we will learn to develop…
JSON parsing is a key component in android application development. We can parse JSON data using different third party libraries like loopj, retrofit and volley. In this tutorial we will learn how to parse data from url into android using loopj. We will develop a complete android json parsing example…
ExpandableListView is used to display data in groups. These groups are expanded to show its children. For this kind of listview we use ExpandableAdapter. We can expand and collapse groups to show and hide child views. Its the quickest way to display multilevel data. Lets get started with a new…
Custom ListView is the backbone of android application development. When it comes to show multiple items like images, text and buttons we must need customized solution. Custom ListView BaseAdapter make it possible to show multiple views to be displayed. In this tutorial we will learn to make a ListView with…
ListView is an important component of android app development so understanding of using ListViews is a compulsory skill. In this tutorial we will learn how to use Simple ListView ArrayAdapter to show items. ListViews are used to display multiple items from arrays. ArrayAdapter works as a bridge between data array…