Romman Sabbirrommansabbir.com·Aug 13, 2024Why not JetPack Compose with DiffUtil?DiffUtil is a tool in Android's RecyclerView library that helps update lists efficiently. It compares an old list with a new list to find the differences. Instead of replacing the whole list and redrawing everything, DiffUtil figures out the smallest...10 likes·319 readsAndroid Application DevelopmentAndroid
Thirdy Gayaressoftware-engineer.thirdygayares.com·Aug 4, 2024Custom Recycler View in Android Java By Thirdy Gayareshttps://www.youtube.com/watch?v=AT2BFEApCZ4&t=59s Welcome to this tutorial on creating a Custom Recycler View in Android Java. This guide is designed to be simple and easy to follow, helping you step by step in understanding and implementing a cust...AndroidAndroid
Canopascanopas.hashnode.dev·Feb 9, 2024The RecyclerView You Know in Jetpack ComposeJetpack Compose revolutionizes Android UI development, offering a declarative approach that empowers developers to create elegant and efficient interfaces with minimal code. Yet, performance challenges arise with built-in LazyLists when handling exte...Jetpack Compose
Bawender Yandrabawender.hashnode.dev·Aug 12, 2023Generic recyclerview for all occasionsRecyclerView with all its glory and advancements through which we can make complex lists is still too bloated and lengthy to write as a developer. I mean to say that writing an adapter class, then a viewholder class then defining the logic for click ...Android
Abhishek EdlaforDashwave for Mobile Devsdevblogs.dashwave.io·Jul 19, 2023Optimizing RecyclerView for Large Data SetsIn the realm of Android development, dealing with large data sets efficiently is a common challenge. One of the key components that Android developers use to address this challenge is the RecyclerView. The RecyclerView is a powerful, flexible API for...1.2K readsrecycler-view
Arthur Okolodeathg0d.hashnode.dev·Jun 28, 2023Creating a dynamic list with RecyclerView in Android: A Beginner's guideWhat is a RecyclerView? RecyclerView is a ViewGroup used to efficiently display large clusters of data either in a list or grid layout. As a successor of both the GridView and ListView, it offers better performance and control. It operates through th...11 likes·359 readsrecycler-view
Otiego Ronaldrondroid.hashnode.dev·Jun 21, 2023Understanding RecyclerView, Adapter, and ViewHolderDinner Party Seating Made Easy Imagine you're attending a lavish dinner party, and you're the host in charge of many visitors. You have a lovely dining table (RecyclerView) with little space for everyone. You decide to utilize place cards (ViewHolder...2 likes·34 readsAndroid
Vishal Anandvishal-anand.hashnode.dev·Dec 8, 2022How to make the table and insert values in SQLite DB - Android StudioHello folks, in this article we will see how we can implement an SQLite database, make tables, insert data into tables, and fetch the table's data into RecyclerView using Kotlin. In this article, we will make an app that will store the user data ( na...644 readsrecycler-view
Daniel Waigurudanielwaiguru.hashnode.dev·Sep 12, 2022Quick RecyclerView Adapter with Android Studio TemplateAs I was surfing through the web, I came across this article by Ferdinand Bada on creating an Android Studio template to generate recycler view adapter boilerplate code. I was amazed at how easily one can create a recycler view adapter. However, alt...3 likes·246 readsKotlin
Chandra Sekhar Balachandra100.hashnode.dev·Sep 3, 2022Implement RecyclerView in android and show dynamic data?In this article, we will cover : Why ListView is needed? How RecyclerView took over ListView? implementation of ReyclerView withListAapter. For better understanding, we will create a sample project 😉 Why ListView is needed? As we know most of the...221 readsAndroid