listview Archives - Androhub

Room Database | Android Jetpack – Part 1

In this article, We are going to learn how to implement the Room Database in Android Application. What is Room Database? Room is a persistence library part of Android Jetpack Components. It provides an abstraction layer over SQLite to allow fluent database access while harnessing the full power of SQLite. Benefits of Room Compile-time verification

Read More
Filterable List Banner

Android Adding Search Functionality to List

Today we are going to learn how to add search functionality to ListView, GridView and RecyclerView. In this tutorial you can filter search list by multiple items. Prerequisite: Material Tabs Tutorial ListView Tutorial GridView Tutorial RecyclerView Tutorial Radio Button Tutorial VIDEO DEMO 1. Create a new project in Android Studio by navigating to File ⇒ New ⇒ New Project

Read More
RadioButton List Banner

Android ListView RadioButton

In previous article  we learnt about how to use multiple choices in ListView. Today we are going to learn how to enable single choice/radio button in ListView, GridView and in RecyclerView using RadioButton, you’ll configure the ListView to display a radioButton next to each item. You can combine many components like TextView, RadioButton, ImageView, etc. and can

Read More
CheckBox List Banner

Android ListView Checkbox

Hi to all, today we are going to learn how to enable multiple items to be chosen in ListView, GridView and in RecyclerView using CheckBox, you’ll configure the ListView to display a checkbox next to each item. You can combine many components like TextView, CheckBox, ImageView, etc. and can make ListView as you require. Prerequisite:

Read More
Header and Footer Banner

Android Header and Footer Tutorial

In this tutorial we are going to learn how to implement Header and Footer for ListView and RecyclerView. The header is a View that displays before first item and footer displays after last item. Most of the apps you had seen who is having header and footer. Same thing we are going to implement in this tutorial.

Read More
Staggered and Horizontal RecyclerView Banner

Android Staggered and Horizontal RecyclerView

In my earlier tutorials of RecyclerView we had learn how to use RecyclerView to create ListView and GridView items. Today we are going to create Staggered GridView and Horizontal RecyclerView. Staggered GridView Staggered GridView is nothing but GridView with random grid sizes that look nice in app. To achieve this we need  StaggeredGridLayoutManager and the syntax

Read More