android

  1. Home
  2. chevron_right
  3. android

Android Simple Section RecylerView

Tutorial
In this tutorial I will create a simple Sectioned RecyclerView that will show 2 sections and a few items in each section and how to move an item from one…

Android Squared CardView

Solutions
Recently, I had to add a perfect square CardView and I wanted to achieve this without hardcoding its width and height. I happily discovered the power of ConstraintLayout and this…

Android Activity launchMode

Articles
In Android you can specify activity launchMode. You can do this either from AndroidManifest.xml file, either using intents with flags. Some of the flags produce the same effects like those…

Android ViewPager Tutorial

Tutorial
In Android, if you need to swipe from right to left or vice-versa in order to see different data, you can use a ViewPager. In order to use it, you…

Android ViewPager Cube Animation

Tutorial
After trying some libraries in order to make a cube animation for my viewPager, I realized that is pretty easy to do this. Android provides an interface called ViewPager.PageTransformer and…