Checkbox Unchecked: It’s a common problem with beginners in android application development once they implement a checkbox in ListView that automatically gets unchecked while scrolling. In this tutorial, we will learn how to avoid this problem. We will implement a custom adapter with a custom row having checkboxes and titles.…
ExpandableListView is used to display data in groups. These groups are expanded to show their children. For this kind of listview, we use ExpandableAdapter. We can expand and collapse groups to show and hide child views. It’s the quickest way to display multilevel data. Let’s get started with a…
Custom ListView is the backbone of android application development. When it comes to showing multiple items like images, text and buttons we must need customized solution. Custom ListView BaseAdapter makes 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 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 and…