Thursday, May 18, 2017

Android Floating Action Button with animation part-2

May 18, 2017
Welcome to the part two of our today's android project. In the previous part, we create animation XML and drawable. Now we add fab code in the layout. (if you miss part one click here) In my case my layout is activity_main.xml before doing this we need two colors in colors.xml. Let's add this <color name="fab1">#e2e21d</color> <color name="fab2">#47e92e</color> Now add three fab button. I share this code one by one. <android.support.design.widget.FloatingActionButton ...
Read More

Android Floating Action Button with animation

May 18, 2017
In this android project, we create 3 floating action button. The main fab button is only showing when activity is launch. other's two are invisible. After clicking the main fab button it will show the other's fab button. Those buttons are now visible and clickable. after clicking again main fab button is rotate 45 degrees and close others fab button with animation. That's our main goal today. Let's start to making our today's android app First, add those dependencies to your build.gradle file dependencies...
Read More