这是一篇技术干货,干到我写不出更多的技术原理......
前几天接到一个需求,在应用底部导航栏添加一个消息未读提醒标记(俗称小红点),在接到需求的时候我大脑中第一时间想到使用 BadgeView 实现,大家都知道这是个很强大的轮子,应该大家都使用过,但是没一会我发现,BadgeView 不支持 RadioButton ,然后一通 Google ,并没有发现优雅、快捷的实现方法(可能是我Google的打开方式不对......)
一顿深(zhua)思(er)熟(nao)虑(sai)后,算了,还是自己加班撸一个吧。下面分享一个简单的 TipButton 自定义控件。
效果图
废话很多!!!直接上图好吧
Demo.gif代码实现
首先,需求很简单,只需要能多显示一个小红点就 OK 了,所以我们只需要在原本的 RadioButton 控件上绘制一个圆型的、红色的一个图案就可以了。
自定义一个 TipRadioButton 直接继承 RadioButton ,然后再 onDraw() 方法中绘制一个我们需要的小红点,并为其设置一个绘制开关。
- 定义小红点对象,设置圆角和红点显示的位置
private class Dot {
int color;
int radius;
int marginTop;
int marginRight;
Dot() {
float density = getContext().getResources().getDisplayMetrics().density;
radius = (int) (5 * density);
marginTop = (int) (3 * density);
marginRight = (int) (3 * density);
color = getContext().getResources().getColor(R.color.red);
}
}
- 绘制 RadioButton
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (isTipOn) {
float cx = getWidth() - mDot.marginRight - mDot.radius;
float cy = mDot.marginTop + mDot.radius;
Drawable drawableTop = getCompoundDrawables()[1];
if (drawableTop != null) {
int drawableTopWidth = drawableTop.getIntrinsicWidth();
if (drawableTopWidth > 0) {
int dotLeft = getWidth() / 2 + drawableTopWidth / 2;
cx = dotLeft + mDot.radius;
}
}
Paint paint = getPaint();
//save
int tempColor = paint.getColor();
paint.setColor(mDot.color);
paint.setStyle(Paint.Style.FILL);
canvas.drawCircle(cx, cy, mDot.radius, paint);
//restore
paint.setColor(tempColor);
}
}
打开方式
使用方法很简单,简单到你不需要看
<com.dreamfisn.tipdemo.TipRadioButton
android:id="@+id/tip_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
/>
Demo 下载
在这里贴出 Demo 下载地址,后面有时间会添加更多功能,尽请期待......
网友评论