Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Class BadgeDrawable not found. How to use material design BadgeDrawable in Android

For the first time, I am trying to use the badge notification icon on the material TabItem. My goal is to show the badge with the total number of items in the RecyclerView. I was going through with this document Tab Layout - Material Components for Android and trying to implement the functionality accordingly, but at this line BadgeDrawable badge = tablayout.getTab(0).getOrCreateBadge(); I am getting error that BadgeDrawable class not found.

Can anyone help me with this?

Thanks

like image 649
maddy23285 Avatar asked Dec 06 '25 05:12

maddy23285


1 Answers

The BadgeDrawble integration into TabLayout was released with the 1.1.0-alpha07.

Use the latest 1.1.0 version available today:

implementation 'com.google.android.material:material:1.1.0'
like image 116
Gabriele Mariotti Avatar answered Dec 08 '25 17:12

Gabriele Mariotti