Ijlal Ahmadijlalahmad.hashnode.dev·Feb 6, 2024Evolution of List Rendering in AndroidLists are integral components in Android applications, found across various functionalities like contacts, chat, social media, and music apps. Even seemingly simple apps, like calculators, incorporate lists for unit conversions. As an Android develop...Discuss·28 readsscrollview
Khush Panchalkhushpanchal.hashnode.dev·Oct 3, 2023Introducing RVTimeTracker - RecyclerView Time TrackerUnderstanding User Engagement in Android As Android developers, we’re constantly looking for ways to understand user behavior within our apps. A critical aspect of this understanding is knowing how much time users spend viewing individual items in a ...DiscussAndroid
Fakhrul Siddiqeifakhrulasa.hashnode.dev·Jun 6, 2023LazyColumn vs RecyclerView!!We are using LazyColumn in Jetpack Compose, let's see how they differ from each other and how they work. 1. Re-using views: Unlike re-using already created views like RecyclerView, lazyColumn uses a lazy list which emits a new view whenever we scroll...Discuss·498 readsAndroid
sandhya bhatsandhyabhat.hashnode.dev·Feb 3, 2023How to display list of items in AndroidLists are one of the most widely used features in apps. Android provides ListView and RecyclerView to address this requirement. With ListView we can only display data in a vertically scrollable format, whereas with RecyclerView we can display data in...Discuss·36 readslistview
freeCodeCampforfreeCodeCampfreecodecamp.org·May 18, 2020How to Implement 'Swipe for Options' in RecyclerViewBy Gagandeep Singh Let's say a user of your site wants to edit a list item without opening the item and looking for editing options. If you can enable this functionality, it gives that user a good User Experience. Pocket, a bookmarking app owned by ...DiscussJava
freeCodeCampforfreeCodeCampfreecodecamp.org·Dec 10, 2015Simplifying RecyclerView Adapters with Rx & DatabindingBy Ahmed Rizwan I recently wanted to dive deeper into Rx. So I experimented with Rx and the RecyclerView Adapters, and the results were pretty interesting! With Rx in mind, I set out to accomplish three things: Create a RecyclerView adapter which sh...DiscussAndroid