Badge for Bottomnavigationview
nisd93 opened this issue · 1 comments
nisd93 commented
Is it possible to add badge for Bottomnavigationview?
If yes then how can I do it?
nex3z commented
You can overlay NotificationBadge on BottomNavigationView. For example,
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_gravity="start"
app:menu="@menu/my_navigation_items"/>
<com.nex3z.notificationbadge.NotificationBadge
android:id="@+id/badge"
android:layout_width="28dp"
android:layout_height="28dp"
android:layout_marginLeft="72dp"
app:nbBackground="@drawable/badge_bg_with_shadow"
app:nbMaxTextLength="2"/>
</FrameLayout>