tabbar简单实现消息提示(小红点)

2023-12-18 21:48

本文主要是介绍tabbar简单实现消息提示(小红点),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

简单实现消息提示(小红点)

最近有些忙,版本不断叠加,需求一个接一个。这不,其中有一个需求就是在原有的版本上显示一个红点提示,类似于qq未读消息一样,需求图如下:http://www.jianshu.com/p/b6651995397f

QQ截图20170421140930.png
没错,看起来好简单,可我们再看下设计师给我们切的图(设计师很周到哈,这里谢谢谢谢,嘿嘿)

QQ截图20170421141143.png
设计师是分不同状态来切的,如果我们按照这个思维去根据不同状态判断实现的话,不是不行,而是稍微麻烦了些。我们能不能尽量对以前代码做轻微的改动就能实现新的需求呢?当然是可以的了。看下以前代码是如何实现的:
<RadioGroupandroid:id="@+id/bottom_radiogroup"android:layout_width="match_parent"android:layout_height="50dp"android:layout_marginTop="1px"android:background="@android:color/white"android:gravity="center_vertical"android:orientation="horizontal"><RadioButtonandroid:id="@+id/home_index"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:button="@null"android:checked="true"android:drawablePadding="2dp"android:drawableTop="@drawable/home_index_select"android:gravity="center"android:text="首页"android:textColor="@color/home_select_color"android:textSize="11sp" /><RadioButtonandroid:id="@+id/home_bx"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:button="@null"android:drawablePadding="2dp"android:drawableTop="@drawable/home_bx_select"android:gravity="center"android:text="保险"android:textColor="@color/home_select_color"android:textSize="11sp" /><RadioButtonandroid:id="@+id/home_my"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:button="@null"android:drawablePadding="2dp"android:drawableTop="@drawable/home_my_select"android:gravity="center"android:text="我的"android:textColor="@color/home_select_color"android:textSize="11sp" /></RadioGroup>
很简单,就一个RadioGroup 包含了三个RadioButton,我们都知道RadioGroup其实是继承Linearlayout的,所以这里让他的三个RadioButton平分,然后每个RadioButton在Gravity.Center居中显示即可,最后每个DrawableTop写一个selector就达到以前的需求了。
现在来看下新的需求,怎么办?自定义View可以完美实现这个需求,我们可以做到:
  • 1.几乎不用改变以前的代码
  • 2.不需要设计师给出的切图
  • 3.不去关心各种状态,完全独立
代码如下:
public class NotifyRadioButton extends RadioButton {Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
float radius;
boolean notify;public NotifyRadioButton(Context context, AttributeSet attrs) {super(context, attrs);paint.setColor(Color.RED);radius = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX, 12.0f, context.getResources().getDisplayMetrics());
}@Override
protected void onDraw(Canvas canvas) {super.onDraw(canvas);if (notify) {Drawable drawable = getCompoundDrawables()[1];Rect bounds = drawable.getBounds();//float cx, float cy, float radius, @NonNull Paint paintfloat cx = getMeasuredWidth() / 2 + bounds.width() / 2 - radius / 2;float cy = getPaddingTop() + bounds.height() / 4;canvas.drawCircle(cx, cy, radius, paint);}
}/*** 新消息提醒** @param notify*/
public void notify(boolean notify) {this.notify = notify;invalidate();
}}
思路:
首先我们继承自RadioButton,然后在canvas中自己绘制一个小红点即可。
canvas分析:
@Override
protected void onDraw(Canvas canvas) {super.onDraw(canvas);if (notify) {//获取到DrawableTop,  0 drawableleft 1 drawabletop 2 drawableright 3 drawablebottomDrawable drawable = getCompoundDrawables()[1];//获取到Drawable的left right top bottom的值Rect bounds = drawable.getBounds();//这里分析: //getMeasuredWidth() / 2 等于整个控件的水平位置中心点//bounds.width() /2 drawable宽度的一半//radius / 2 小圆点宽度的一半//由于我们在布局文件中设置了Gravity为Center,所以最后小红点的x坐标为drawable图片右边对其+radius/2的位置上float cx = getMeasuredWidth() / 2 + bounds.width() / 2 - radius / 2;//y就比较好定义了,为drawable 1/4即可float cy = getPaddingTop() + bounds.height() / 4;//float cx, float cy, float radius, @NonNull Paint paint//把小红点绘制上去canvas.drawCircle(cx, cy, radius, paint);}
}
计算方式,大家好好理一理,下面测试。我们在以前布局中,将最后一个RadioButton替换为我们自定义的
 <RadioGroupandroid:id="@+id/bottom_radiogroup"android:layout_width="match_parent"android:layout_height="50dp"android:layout_marginTop="1px"android:background="@android:color/white"android:gravity="center_vertical"android:orientation="horizontal"><RadioButtonandroid:id="@+id/home_index"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:button="@null"android:checked="true"android:drawablePadding="2dp"android:drawableTop="@drawable/home_index_select"android:gravity="center"android:text="首页"android:textColor="@color/home_select_color"android:textSize="11sp" /><RadioButtonandroid:id="@+id/home_bx"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:button="@null"android:drawablePadding="2dp"android:drawableTop="@drawable/home_bx_select"android:gravity="center"android:text="保险"android:textColor="@color/home_select_color"android:textSize="11sp" /><com.merchantshengdacar.view.NotifyRadioButtonandroid:id="@+id/home_my"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:button="@null"android:drawablePadding="2dp"android:drawableTop="@drawable/home_my_select"android:gravity="center"android:text="我的"android:textColor="@color/home_select_color"android:textSize="11sp" /></RadioGroup>
然后在代码中,通过id找到控件,调用notify(true),run起来,效果图如下:

图片.png

这篇关于tabbar简单实现消息提示(小红点)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/509875

相关文章

Ilya-AI分享的他在OpenAI学习到的15个提示工程技巧

Ilya(不是本人,claude AI)在社交媒体上分享了他在OpenAI学习到的15个Prompt撰写技巧。 以下是详细的内容: 提示精确化:在编写提示时,力求表达清晰准确。清楚地阐述任务需求和概念定义至关重要。例:不用"分析文本",而用"判断这段话的情感倾向:积极、消极还是中性"。 快速迭代:善于快速连续调整提示。熟练的提示工程师能够灵活地进行多轮优化。例:从"总结文章"到"用

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

hdu2289(简单二分)

虽说是简单二分,但是我还是wa死了  题意:已知圆台的体积,求高度 首先要知道圆台体积怎么求:设上下底的半径分别为r1,r2,高为h,V = PI*(r1*r1+r1*r2+r2*r2)*h/3 然后以h进行二分 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#includ

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

usaco 1.3 Prime Cryptarithm(简单哈希表暴搜剪枝)

思路: 1. 用一个 hash[ ] 数组存放输入的数字,令 hash[ tmp ]=1 。 2. 一个自定义函数 check( ) ,检查各位是否为输入的数字。 3. 暴搜。第一行数从 100到999,第二行数从 10到99。 4. 剪枝。 代码: /*ID: who jayLANG: C++TASK: crypt1*/#include<stdio.h>bool h

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount