RecyclerView Load On Scroll in Android Android by Rajesh Kumar Sahanee - February 20, 2020April 14, 20200 Hello Friends, today we are going to see and example of recyclerview load on scroll in Android. Basically we are going to implement infinite scroll in recyclerview here and the basic function of this code is to load more data on scroll when we reaches to the end while scrolling
Multiple Filters and Sorting in Android Android Android Projects Java by Rajesh Kumar Sahanee - February 16, 2020March 24, 20200 Hello Friends, today we are going to see multiple filters and sorting in Android. In multiple filters we basically choose multiple values from multiple available filter options.
Adding Animations to Controls or Layouts in Android Android by Rajesh Kumar Sahanee - November 9, 2019November 9, 20190 Hello Friends, Today we are going to learn adding animations to controls or Layouts in Android. Recently I was working on an app in which I was required to add animation on a control's visiblility "gone" and "visible". So I used alpha method to achieve fade in and fade out
Android RecyclerView Swipe to Multiple Options Android by Rajesh Kumar Sahanee - November 3, 2019November 3, 20190 Hello Friends, Today I am going to share Android RecyclerView swipe to multiple options code. Recently I was working on an app in which I was required to add swipe to delete feature which I already shared in my previous post. But, while finding the solution for swipe to delete
Swipe To Delete and Undo Feature in Android RecyclerView Android by Rajesh Kumar Sahanee - October 29, 2019April 16, 20200 Hello Friends, Today I am going to share how to add swipe to delete and undo feature in Android RecyclerView. Recently I was working on an app in which I was required to add same swipe to delete feature. So, I googled and found the solution and modified it according
Android AlarmManager to Start Background Service Periodically Android by Rajesh Kumar Sahanee - October 26, 2019October 26, 20190 Hello Friends, Today I am going to share how to use Android AlarmManager to Start Background Service Periodically. The Alarm Manager holds a CPU wake lock which guarantees that the phone will not sleep until you have finished handling the broadcast. It can also be used to perform some repetitive
ImageView with Rounded Corners in Android Android by Rajesh Kumar Sahanee - October 25, 2019October 25, 20190 Hello Friends, Today I am going to share how to add ImageView with Rounded Corners in Android. Actually recently I was working on an app in which I had to set profile pic of user but with rounded corners. I struggled a lot for this simple thing, but found the
WebView Based Android App with ProgressBar and SwipeRefreshLayout Android by Rajesh Kumar Sahanee - July 22, 2019July 22, 20190 Hello Friends, Today we are going to see another example of WebView based App, but this time it will be WebView Based Android App with ProgressBar and SwipeRefreshLayout. Here ProgressBar helps us to see progress of page loading while SwipeRefreshLayout is used to refresh the same page with just a
ListView inside Navigation Drawer in Android Android by Rajesh Kumar Sahanee - July 18, 2019July 18, 20190 Hello Friends, Today I am going to share a code to place ListView inside Navigation Drawer in Android. A list view is an adapter view that does not know the details, such as type and contents, of the views it contains. Instead list view requests views on demand from a
Open Navigation Drawer Programmatically in Android Android by Rajesh Kumar Sahanee - July 11, 2019April 5, 20200 Hello Friends, Today I am going to share a code to Open Navigation Drawer Programmatically in Android. And to do so you just need DrawerLayout's reference and then you can call openDrawer(int) function on it to open drawer. You can also close Drawer programmatically using closeDrawer(int) function but you don't