by abhishek | Nov 11, 2017 | listview, Recyclerview
Generally data is displayed in the form of listviews in apps, so that data can be dynamically loaded also sometimes the list has to be searched. Android Recyclerview is mostly used now a days rather than the android listview so that the views get recycled and consumes...
by abhishek | Jul 24, 2016 | images, listview, Recyclerview
In mobile applications a lot of data needs to be shown in form of a listview which will consume more data and can cause problem in populating view in some cases so for this cause Android RecyclerView is introduced we will learn more from Android Tutorial on...
by abhishek | Jun 18, 2016 | custom-listview, listview
Android Custom Listview tutorial helps you to learn how to set data to ListView using adapter class. Here, i will use a getview interface and will set data to the listview, using setter and getter’s.Here in this tutorial i will be showing android operating...
by abhishek | Apr 24, 2016 | listview
A listview is used to display a list of values coming from different types of sources such as databases, string arrays etc., its a dynamic way of displaying the values when don’t know the exact number of values. In this custom listview android tutorial i will...
by abhishek | Apr 8, 2016 | Expandable Listview, listview
Generally when we deal with menu’s which are to be show in listview,Sometimes we need to show sub-categories so for this purpose we will deal with android Expandable Listview in name itself says that it will be expanded depending upon categories. Categories are...