I want to add a badge in my button, how can i do that ?
Button :
<Button
android:id="@+id/button"
android:layout_width="0dp"
android:layout_weight="1"
android:background="@drawable/badge_circle"
android:gravity="center"
android:padding="12dip"
android:text="Button"
android:textColor="#ffffff"/>
You can use this
BadgeDrawable badgeDrawable = BadgeDrawable.create(getContext());
badgeDrawable.setNumber(3);
badgeDrawable.setVisible(true);
BadgeUtils.attachBadgeDrawable(badgeDrawable, tragetView);
check for more https://material.io/develop/android/components/badging
Need to set the compound drawable of the button. Take a look at this and this for better understandment. If u have any more questions. ask.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With