A FloatingActionButton subclass that shows a small notification badge on right top corner. Inspired by andremion/CounterFab. AsuleFab for universal badge or any notification.
Include the library in your build.gradle
dependencies{
implementation 'com.asepsulaeman.asulefab:asulefab:1.0.0'
}
Add it as a regular FloatingActionButton on layout…
<com.asepsulaeman.asulefab.AsuleFab
android:id="@+id/counter_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_add_white_24dp" />
and programmatically you can use one of these methods:
AsuleFab asuleFab = (AsuleFab) findViewById(R.id.counter_fab);
asuleFab.setNotification("*"); // Set the text to show on badge
asuleFab.setNotification(""); // clear notification and hide badge
asuleFab.setNotification("1"); // can also a numeric
asuleFab.getNotification(); // Get the current notif
The recommended way to customize the background color is by using the app:backgroundTint
attribute
<com.asepsulaeman.asulefab.AsuleFab
android:id="@+id/counter_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:backgroundTint="#009688"
android:src="@drawable/ic_filter_list_black_24dp" />
See more at the sample
- Design Support Library The Design package provides APIs to support adding material design components and patterns to your apps.
Copyright 2016 André Mion
Modified 2018 Asep Sulaeman
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.