Android RecyclerView Archives - Androhub

Sectioned RecyclerView Banner

Sectioned RecyclerView Android

Hi all, Today we are going to learn how to make Sectioned RecyclerView which you have seen in PlayStore App. To know about RecyclerView and basic implementations you can see my previous articles on it. To make Sectioned RecyclerView we are going to need a RecyclerView nested into another RecyclerView. VIDEO 1. Create a new

Read More
Swipe Dismiss RecyclerView Banner

Swipe Dismiss RecyclerView

Hello Friends, today we are going to learn an awesome functionality based on Swipe Dismiss RecyclerView. To achieve this functionality we are going to need one java class which will handle the Swipe gesture. The class you can get from this link, this is a superb class that you need to implement with your recycler

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

Lollipop Activity Transitions

One of the most interesting aspects of the Material Design specifications is the visual continuity between activities. With just a few lines of code, the new Lollipop APIs allow you to meaningfully transition between two activities. This breaks the classic activity boundaries of the previous Android versions and allows the user to understand how elements go from

Read More
RecyclerView Animation Banner

RecylerView Animation

In earlier tutorials we had learned implementation of RecyclerView. Now in this tutorial we will move to RecyclerView Animation part. The best thing of RecyclerView is that it provide inbuilt animations but the ListView and GridView don’t provide inbuilt animation. Now to implement the Animation in RecyclerView it provide some methods that we need to use: notifyItemRemoved(position)

Read More