Badge on BottomNavigationView

前端 未结 4 1230
隐瞒了意图╮
隐瞒了意图╮ 2020-12-02 02:03

I am trying to add a badge to the BottomNavigationView Item without using any library, however somehow the BottomNavigationView is not showing the

4条回答
  •  再見小時候
    2020-12-02 02:17

    use the BadgeDrawable like this:

    Integer amount = tabBadgeCountMap.get(tab);
                BadgeDrawable badgeDrawable = bottomNavigationView.getOrCreateBadge(tabMenuResId);
                badgeDrawable.setNumber(amount != null ? amount : 0);
    

提交回复
热议问题