BadgeView icon indicating copy to clipboard operation
BadgeView copied to clipboard

a BadeView base on android

Results 14 BadgeView issues
Sort by recently updated
recently updated
newest added

When I create badge view and the number of badge changed the number not updating. if i put in onResume void create badgeView and the number changed that happen is...

i've tried badgeView.unbind(); and not working

我想在浮标上显示红点,代码如下 floatTipsView = BadgeFactory.create(mContext) .setWidthAndHeight(8, 8) .setBadgeBackground(Color.parseColor("#FF1014")) .setBadgeGravity(Gravity.RIGHT | Gravity.TOP) .setShape(BadgeView.SHAPE_CIRCLE) .setMargin(0, 0, 0, 0) .bind(FloatView.this); 但并没有显示出来,请问是什么原因?FloatView extends FrameLayout

I am trying to update badge programmatically and it just won't refresh for some reason. It stays with the old value. Any idea?

Can I bind to text or icon in `TabLayout`?

代码如下: BadgeFactory.create(this) .setTextColor(Color.WHITE) .setWidthAndHeight(25,25) .setBadgeBackground(Color.RED) .setTextSize(10) .setBadgeGravity(Gravity.RIGHT|Gravity.TOP) .setBadgeCount(20) .setShape(BadgeView.SHAPE_CIRCLE) .setMargin(0,0,5,0) .bind(rbAttention);