RadioButton自定义,实现底部导航消息数目提醒效果

先看效果

3CD2C601-38FF-458A-A257-910A3796AA19.png

创建styleable

1、在values文件夹下创建attrs.xml

<declare-styleable name="RemindRadioButton">
        <attr name="remindTextSize" format="dimension"/>
        <attr name="remindNumber" format="integer"/>
        <attr name="remindTextColor" format="color"/>
        <attr name="remindTextBackground" format="reference"/>
        <attr name="remindTextBgColor" format="color"/>
        <attr name="remindTextWidth" format="dimension"/>
        <attr name="remindTextHeight" format="dimension"/>
        <attr name="remindMarginRight" format="dimension"/>
 </declare-styleable>

2、自定义RadioButton

package com.ww7h.purchasing.main.view;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.util.AttributeSet;


/**
 * ================================================
 * 描述:
 * 来源:     Android Studio.
 * 项目名:   PurchasingTreasure
 * 包名:     com.ww7h.purchasing.main.view
 * 创建时间:  2019/4/24 15:46
 *
 * @author ww  Github地址:https://github.com/ww7hcom
 * ================================================
 */
public class RemindRadioButton extends android.support.v7.widget.AppCompatRadioButton {

    private float remindWidth;
    private float remindHeight;
    private float remindTextSize;
    private int remindResourceId;
    private int remindTextColor;
    private int remindTextBgColor;
    private int remindNumber = 0;
    private float remindMarginRight;

    public RemindRadioButton(Context context) {
        super(context);
    }

    public RemindRadioButton(Context context, AttributeSet attrs) {
        super(context, attrs);
        TypedArray a = context.getTheme().obtainStyledAttributes(attrs, com.ww7h.ww.common.R.styleable.RemindRadioButton, 0, 0);
        remindMarginRight = a.getDimension(com.ww7h.ww.common.R.styleable.RemindRadioButton_remindMarginRight, 0);
        remindWidth = a.getDimension(com.ww7h.ww.common.R.styleable.RemindRadioButton_remindTextWidth, 0);
        remindHeight = a.getDimension(com.ww7h.ww.common.R.styleable.RemindRadioButton_remindTextHeight, 0);
        remindTextSize = a.getDimension(com.ww7h.ww.common.R.styleable.RemindRadioButton_remindTextSize, 0);
        remindResourceId = a.getResourceId(com.ww7h.ww.common.R.styleable.RemindRadioButton_remindTextBackground, 0);
        remindTextColor = a.getColor(com.ww7h.ww.common.R.styleable.RemindRadioButton_remindTextColor, Color.WHITE);
        remindTextBgColor = a.getColor(com.ww7h.ww.common.R.styleable.RemindRadioButton_remindTextBgColor, Color.RED);
        remindNumber = a.getInt(com.ww7h.ww.common.R.styleable.RemindRadioButton_remindNumber, 0);
    }

    public RemindRadioButton(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public void draw(Canvas canvas) {
        super.draw(canvas);

        if (remindNumber > 0) {

            Paint paint = new Paint();
            if (remindResourceId == 0) {
                paint.setColor(remindTextBgColor);
            }

            Path path = new Path();

            float minX = getWidth() - remindWidth - remindHeight / 2 - remindMarginRight;
            float maxX = getWidth() - remindHeight / 2 - remindMarginRight;

            // 绘制左侧圆形
            path.addCircle(maxX,
                    remindHeight / 2, remindHeight / 2, Path.Direction.CW);

            path.close();

            canvas.drawPath(path, paint);
            int count = 1;
            // 当提醒消息数超过一位数时
            if (remindNumber > 9) {
                count = remindNumber > 99 ? 3 : 2;
                // 绘制右侧半圆
                path.addCircle(minX,
                        remindHeight / 2, remindHeight / 2, Path.Direction.CW);
                path.close();

                canvas.drawPath(path, paint);

                path = new Path();

                // 绘制提醒消息显示位置矩形
                path.moveTo(minX, remindHeight);
                path.lineTo(minX, 0);
                path.lineTo(maxX, 0);
                path.lineTo(maxX, remindHeight);
                path.close();

                canvas.drawPath(path, paint);
            } else {
                count = 1;
                minX = getWidth() - remindHeight - remindMarginRight;
                maxX = getWidth() - remindMarginRight;
                path = new Path();

                // 绘制消息显示矩形
                path.moveTo(minX, remindHeight);
                path.lineTo(minX, 0);
                path.lineTo(maxX, 0);
                path.lineTo(maxX, remindHeight);
                path.close();

                paint.setColor(Color.TRANSPARENT);
                canvas.drawPath(path, paint);
            }

            paint.setStyle(Paint.Style.STROKE);
            paint.setColor(remindTextColor);
            paint.setTextSize(remindTextSize);

            canvas.drawTextOnPath(String.valueOf(remindNumber), path,
                    remindHeight + Math.abs((remindWidth - remindTextSize / 2 * count )/2),
                    remindTextSize, paint);
        }
    }

    public void setRemindNumber(int number) {
        this.remindNumber = number;
        invalidate();
    }

    public void setRemindMarginRight(float remindMarginRight) {
        this.remindMarginRight = remindMarginRight;
        invalidate();
    }

    public void setRemindWidth(float remindWidth) {
        this.remindWidth = remindWidth;
        invalidate();
    }

    public void setRemindHeight(float remindHeight) {
        this.remindHeight = remindHeight;
        invalidate();
    }
}

3、布局中使用

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <data>
        <variable
            name="number1"
            type="Integer"/>
        <variable
            name="number2"
            type="Integer"/>
        <variable
            name="number3"
            type="Integer"/>
        <variable
            name="number4"
            type="Integer"/>
    </data>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <Button
            android:id="@+id/jump_next_btn"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />


        <RadioGroup
            android:id="@+id/b_nav_group"
            android:layout_alignParentBottom="true"
            android:gravity="center_vertical"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_54"
            android:orientation="horizontal">
            <com.ww7h.purchasing.main.view.RemindRadioButton
                android:id="@+id/b_nav_1"
                android:checked="true"
                android:textSize="@dimen/sp_12"
                android:text="清单"
                app:remindMarginRight="@dimen/dp_30"
                app:remindNumber="@{number1}"
                app:remindTextWidth="10dp"
                app:remindTextHeight="10dp"
                app:remindTextSize="8sp"
                app:remindTextColor="@color/color_6f"
                app:remindTextBgColor="@color/color_2f230"
                android:textColor="@color/bottom_nav_text_color"
                android:gravity="center"
                android:drawableTop="@drawable/bottom_nav_check_icon1"
                android:button="@null"
                android:layout_weight="1"
                android:layout_width="@dimen/dp_0"
                android:layout_height="wrap_content" />
            <com.ww7h.purchasing.main.view.RemindRadioButton
                android:id="@+id/b_nav_2"
                android:textSize="@dimen/sp_12"
                android:text="日程"
                app:remindNumber="@{number2}"
                app:remindTextWidth="5dp"
                app:remindTextHeight="10dp"
                app:remindTextSize="8sp"
                app:remindTextColor="@color/color_6f"
                app:remindTextBgColor="@color/color_2f230"
                app:remindMarginRight="@dimen/dp_30"
                android:textColor="@color/bottom_nav_text_color"
                android:drawableTop="@drawable/bottom_nav_check_icon2"
                android:gravity="center"
                android:button="@null"
                android:layout_weight="1"
                android:layout_width="@dimen/dp_0"
                android:layout_height="wrap_content" />
            <com.ww7h.purchasing.main.view.RemindRadioButton
                android:id="@+id/b_nav_3"
                android:textSize="@dimen/sp_12"
                android:text="购买人"
                app:remindNumber="@{number3}"
                app:remindMarginRight="@dimen/dp_30"
                app:remindTextWidth="10dp"
                app:remindTextHeight="10dp"
                app:remindTextSize="8sp"
                app:remindTextColor="@color/color_6f"
                app:remindTextBgColor="@color/color_2f230"
                android:textColor="@color/bottom_nav_text_color"
                android:drawableTop="@drawable/bottom_nav_check_icon3"
                android:gravity="center"
                android:button="@null"
                android:layout_weight="1"
                android:layout_width="@dimen/dp_0"
                android:layout_height="wrap_content" />
            <com.ww7h.purchasing.main.view.RemindRadioButton
                android:id="@+id/b_nav_4"
                android:textSize="@dimen/sp_12"
                android:text="邮寄"
                app:remindNumber="@{number4}"
                app:remindMarginRight="@dimen/dp_30"
                app:remindTextWidth="10dp"
                app:remindTextHeight="10dp"
                app:remindTextSize="8sp"
                app:remindTextColor="@color/color_6f"
                app:remindTextBgColor="@color/color_2f230"
                android:textColor="@color/bottom_nav_text_color"
                android:drawableTop="@drawable/bottom_nav_check_icon4"
                android:gravity="center"
                android:button="@null"
                android:layout_weight="1"
                android:layout_width="@dimen/dp_0"
                android:layout_height="wrap_content" />
        </RadioGroup>
    </RelativeLayout>

</layout>

4、Activity调用

    package com.ww7h.purchasing.main.view;

import android.content.Intent;
import android.view.View;

import com.ww7h.common.mvvm.v.BaseVActivity;
import com.ww7h.purchasing.R;
import com.ww7h.purchasing.databinding.ActivityMainDetailBinding;
import com.ww7h.ww.common.utils.DensityUtil;
import com.ww7h.ww.common.utils.LogUtil;
import com.ww7h.ww.common.utils.ScreenUtil;

/**
 * ================================================
 * 描述:
 * 来源:     Android Studio.
 * 项目名:   PurchasingTreasure
 * 包名:     com.ww7h.purchasing.main.view
 * 创建时间:  2019/4/23 20:53
 *
 * @author ww  Github地址:https://github.com/ww7hcom
 * ================================================
 */
public class MainDetailActivity extends BaseVActivity<MainDetailActivity, ActivityMainDetailBinding> {

    @Override
    protected int getContentView() {
        return R.layout.activity_main_detail;
    }

    @Override
    protected void initAction() {

        vdBinding.jumpNextBtn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(activity, MainActivity.class);
                startActivity(intent);
            }
        });

    }

    @Override
    protected void initView() {

        float width = ScreenUtil.Companion.getScreenWidth(activity) / 8f;

        vdBinding.setNumber1(2);
        vdBinding.bNav1.setRemindWidth(DensityUtil.INSTANCE.sp2px(activity, 10));
        vdBinding.bNav1.setRemindHeight(DensityUtil.INSTANCE.sp2px(activity, 10));
        vdBinding.bNav1.setRemindMarginRight(width - DensityUtil.INSTANCE.sp2px(activity, 15));
        vdBinding.setNumber2(23);
        vdBinding.bNav2.setRemindWidth(DensityUtil.INSTANCE.sp2px(activity, 10));
        vdBinding.bNav2.setRemindHeight(DensityUtil.INSTANCE.sp2px(activity, 10));
        vdBinding.bNav2.setRemindMarginRight(width - DensityUtil.INSTANCE.sp2px(activity, 20));
        vdBinding.setNumber3(999);
        vdBinding.bNav3.setRemindWidth(DensityUtil.INSTANCE.sp2px(activity, 15));
        vdBinding.bNav3.setRemindHeight(DensityUtil.INSTANCE.sp2px(activity, 10));
        vdBinding.bNav3.setRemindMarginRight(width - DensityUtil.INSTANCE.sp2px(activity, 25));
        vdBinding.setNumber4(0);
        vdBinding.bNav4.setRemindWidth(DensityUtil.INSTANCE.sp2px(activity, 10));
        vdBinding.bNav4.setRemindHeight(DensityUtil.INSTANCE.sp2px(activity, 10));
        vdBinding.bNav4.setRemindMarginRight(width - DensityUtil.INSTANCE.sp2px(activity, 20));


    }

    @Override
    protected void onNewIntent(Intent intent) {
        super.onNewIntent(intent);
        LogUtil.e(TAG, "-------");

    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        LogUtil.e(TAG, "-------");

    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,179评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,229评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,032评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,533评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,531评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,539评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,916评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,813评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,568评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,654评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,354评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,937评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,918评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,152评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,852评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,378评论 2 342