Notification Badge On Action Item Android

后端 未结 6 1090
感动是毒
感动是毒 2020-12-04 06:06

I wana add a notification badge on the cart image placed in action bar and manipulate it programmatically. Any Help?

6条回答
  •  被撕碎了的回忆
    2020-12-04 06:29

    Perhaps it will be a faster and easier solution. For example xml:

        
    

    Or programmatically:

    imageBadgeView.setBadgeValue(27)
                .setBadgeOvalAfterFirst(true)
                .setBadgeTextSize(16)
                .setMaxBadgeValue(999)
                .setBadgeTextFont(typeface)
                .setBadgeBackground(getResources().getDrawable(R.drawable.rectangle_rounded))
                .setBadgePosition(BadgePosition.BOTTOM_RIGHT)
                .setBadgeTextStyle(Typeface.NORMAL)
                .setShowCounter(true)
                .setBadgePadding(4);
    

    I hope this help.

提交回复
热议问题