ayousuf.hashnode.devHandling Loading states of Android Paging 3Previously I wrote on "Paging 3 on Android" and "Testing Android PagingSource". If you have missed those, please check it out first. In this article, I will write about the loading states of the paging library. Paging library tracks data request stat...Oct 11, 2023·4 min read
ayousuf.hashnode.devTesting Android PagingSourceIn the previous article, I wrote about paging implementation. If you didn't check that you can check it. In this article, I will write about how to test PagingSource. Why testing Testing is very important in development. Test code makes your code bas...Sep 22, 2023·7 min read
ayousuf.hashnode.devPaging 3 on AndroidRecyclerView is used to display a large set of data with a limited window. In RecyclerView we can display paged data. The Paging library makes it easy to show paged data in RecyclerView. Before Paging library Before paging the library, we can display...Sep 8, 2023·6 min read
ayousuf.hashnode.devSchedule Exact Alarms with AlarmManager on AndroidIn Android Development precise task scheduling is essential for reliable and responsive applications. Recently in a project, I had to schedule a task at a precise time. I have used AlarmManager exact alarm in that project. I will share my learning a...Aug 24, 2023·3 min read