Android – View Binding
View binding is a feature that allows you to more easily write code that interacts with views. Once view binding is enabled in a module, it generates a binding class for each XML layout file present in that module.Read More →
View binding is a feature that allows you to more easily write code that interacts with views. Once view binding is enabled in a module, it generates a binding class for each XML layout file present in that module.Read More →
This is an simple example how you can show and hide a custom layout view using slide animation effect. We are going to use one button for toggling a ConstraintLayout as a custom view for the animation effect (you can use whatever container view you prefer). The preferred programming languageRead More →
Intro This post is the first part of three posts series. In this post we will create a navigation drawer in an android project using Views instead of Fragments. In the second part we will see how to add a toggle button on the navigation drawer and add listeners forRead More →
We all want to make lists that can refresh the items in the list with that fancy swipe up on the screen, to have some spinner animated, and to do some stuff after the list is refreshed. We can accomplish it by implementing the Swipe Refresh layout in to ourRead More →