In Android app development, the user interface (UI) is a very important element.
To enhance user experience, it is necessary to provide an intuitive and efficient UI.
In this article, we will take a look at the ‘Floating Action Button (FAB)’.
In particular, we will explain the extended floating action button in detail and guide you step by step on how to implement it.
What is a Floating Action Button (FAB)?
A floating action button is a circular button that floats in a specific area of the screen, usually representing the most important action.
For example, in a note app, it is a button for ‘Create New Note’, and in a chat app, it is a button for ‘Compose Message’.
FAB is very intuitive and helps users easily access important actions.
Need for an Extended Floating Action Button
While a basic FAB is optimized for a single action, there is a need for an extended version when it is necessary to show several related actions to the user.
An extended FAB shows multiple additional buttons or options when the user presses the button.
This allows users to perform a variety of tasks through more options.
Design of the Extended Floating Action Button
The design of the extended FAB can be broadly divided into two parts:
1. Basic FAB
2. Additional icons to show in the expanded state.
By combining these two elements well, an intuitive UI can be provided to the user.
Setting Up the Project in Android Studio
First, open Android Studio and create a new project.
Select ‘Java’ as the language and choose ‘Empty Activity’ to provide the basic template.
// build.gradle (Module: app)
dependencies {
implementation 'com.android.support:design:28.0.0'
}
By adding dependencies like the above, support for Material Components is added.
To use the latest version of libraries, set it up to use Google’s Maven repository.
Designing the Layout File
Open the ‘res/layout/activity_main.xml’ file and set up the basic layout.
Below is the XML code that includes the floating action button and additional buttons.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.getkeepsafe.taptargetview.TapTargetView
android:id="@+id/tap_target_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:tapTarget="Create a new note here!"
app:outerCircleColor="#f44336"
app:targetCircleColor="#ffffff"
app:textColor="#000000">
</com.getkeepsafe.taptargetview.TapTargetView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
app:srcCompat="@drawable/ic_add">
</android.support.design.widget.FloatingActionButton>
<LinearLayout
android:id="@+id/expanded_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentEnd="true"
android:layout_above="@id/fab"
android:visibility="gone">
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_item_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_item1">
</android.support.design.widget.FloatingActionButton>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_item_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_item2">
</android.support.design.widget.FloatingActionButton>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_item_3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_item3">
</android.support.design.widget.FloatingActionButton>
</LinearLayout>
</RelativeLayout>
Implementation of MainActivity.java File
Open the ‘MainActivity.java’ file and add code to handle button click events.
Implement logic to expand or collapse the additional buttons when the FAB is clicked.
package com.example.fabexample;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.LinearLayout;
public class MainActivity extends AppCompatActivity {
private FloatingActionButton fab;
private LinearLayout expandedMenu;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
fab = findViewById(R.id.fab);
expandedMenu = findViewById(R.id.expanded_menu);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (expandedMenu.getVisibility() == View.GONE) {
expandedMenu.setVisibility(View.VISIBLE);
} else {
expandedMenu.setVisibility(View.GONE);
}
}
});
findViewById(R.id.fab_item_1).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Add action for item 1
}
});
findViewById(R.id.fab_item_2).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Add action for item 2
}
});
findViewById(R.id.fab_item_3).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Add action for item 3
}
});
}
}
Adding Icons and Design Elements
Add the icons to be used in the ‘res/drawable’ folder of the project.
These icons provide clear indications for each action, helping users to easily recognize them.
Additionally, adjust the button’s color and size considering user feedback.
Adding Animation
To improve the transition effects of the extended FAB, you can add animations.
Smooth animations when the button expands or collapses can enhance the user experience.
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (expandedMenu.getVisibility() == View.GONE) {
expandedMenu.setVisibility(View.VISIBLE);
expandedMenu.startAnimation(AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_down));
} else {
expandedMenu.startAnimation(AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_up));
expandedMenu.setVisibility(View.GONE);
}
}
});
Creating Animation XML
Create slide animation XML files in the ‘res/anim’ folder.
// slide_down.xml
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromYDelta=-100%
android:toYDelta=0
android:duration=300 />
// slide_up.xml
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromYDelta=0
android:toYDelta=-100%
android:duration=300 />
Testing and Debugging
After writing the code and ensuring that all elements work perfectly,
test the app on various devices to check if the UI displays correctly.
You can test using either an emulator or a real device.
Conclusion
In this tutorial, we learned how to improve user experience in Android apps using the extended floating action button.
The FAB is a simple button, but if implemented correctly, it can provide significant convenience to users.
Based on what you learned in this tutorial, try adding various features to your app.
Additional Resources
– Official Documentation for FloatingActionButton
– Material Design Guidelines