RECYCLER VIEW - PART 1
RECYCLER VIEW IN ANDROID - PART 1 WHAT IS RECYCLER VIEW ?? Recycler View is the advanced and flexible version of List View which holds all the data you want to view or display in your android application list as above image. Example of similar applications may be Playstore , WhatsApp , Other apps which you come across in your day to day life. WHAT IS THE USE OF RECYCLER VIEW ?? We can use recycler view for gathering the data or retrieving the data , from the action that user performs or from the servers(or network events) and place onto the recycler view list. HOW TO IMPLEMENT IN ANDROID STUDIO ?? Add the dependencies to "gradle.app" file. Just follow the following steps in order to add the dependencies : Click File -> Project Structure -> "+" icon -> Library Dependency.(check Image Below) 2. Now you have to add following 3 dependencies : 3. Now we have ...