![]() |
VOOZH | about |
Floating Action Button using Fab Options is another unique way of displaying various options. With the help of this, we can Navigate to different screens easily. This Floating Action button display various menu with Animation. So it increases user experience. In this article, we are going to learn how to implement Floating Action Button using Fab Option Library in Android. A sample GIF is given below to get an idea about what we are going to do in this article. Note that we are going to implement this project using the Java language.
👁 Floating Action Button using Fab Option Library in Android Sample GIFAttributes | Description |
|---|---|
| layout_width | Use to give width to the Floating Action. |
| layout_height | Use to give width to the Floating Action. |
| layout_bottom | Use to align Floating Action button to bottom. |
Step 1: Create a New Project
To create a new project in Android Studio please refer to How to Create/Start a New Project in Android Studio. Note that select Java as the programming language.
Step 2: Add dependency of Floating Action Button using Fab Option library in build.gradle file
Then Navigate to gradle scripts and then to build.gradle(Module) level. Add below line in build.gradle file in the dependencies section.
implementation 'com.github.joaquimley:faboptions:1.2.0'
Now click on Sync now it will sync your all files in build.gradle().
Step 3: Create a new Floating Action Button using Fab Option in your activity_main.xml file
Navigate to the app > res > layout > activity_main.xml and add the below code to that file. Below is the code for the activity_main.xml file.
Step 4: Create a new menu file in your resource folder
Go to the app > res > right-click > New > Android Resource File and choose Resource type as "Menu" and enter the file name as "menu" and click on the OK button. Enter the below code into the menu.xml file.
Step 5: Working with the MainActivity.java file
Go to the MainActivity.java file and refer to the following code. Below is the code for the MainActivity.java file. Comments are added inside the code to understand the code in more detail.
Now click on the run option it will take some time to build Gradle. After that, you will get output on your device as given below.