android自定义控件类型,Android自定义控件 | 小红点的三种实现(上)

2023-12-17 15:59

本文主要是介绍android自定义控件类型,Android自定义控件 | 小红点的三种实现(上),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

小红点用于通知未读消息,在应用中到处可见。本文将介绍三种实现方案。分别是:多控件方案、单控件绘制方案、容器控件绘制方案。不知道你会更偏向哪种方案?

Demo 使用 Kotlin 编写,Kotlin系列教程可以点击这里

多控件方案

多控件最容易想到的方案:TextView作为主体控件,View作为附属小红点控件相互叠加。效果如下:

54965003a9476e04f802bcb04c58febc.png

布局文件如下:

android:layout_width="wrap_content"

android:layout_height="wrap_content">

android:id="@+id/tvMsg"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="消息"

android:textSize="20sp"/>

android:layout_width="6dp"

android:layout_height="6dp"

android:background="@drawable/red_shape"

app:layout_constraintEnd_toEndOf="@id/tvMsg"

app:layout_constraintTop_toTopOf="@id/tvMsg" />

复制代码

其中red_shape是一个红色圆形shape资源文件,代码如下:

android:shape="oval">

android:height="20dp"/>

复制代码

若要显示未读消息数,可以将View换成TextView。

这个方案最大的优点是简单直观,如果项目赶,没有太多时间深思,用这交差也不错。

但它的缺点是增加了控件的数量,如果一个页面中有3个小红点,就增加3个控件。

有什么办法可以两个控件合成一个控件?

单控件绘制方案

是不是可以自定义一个TextView,在右上角绘制一个红圈。

绘制分为两步:

绘制红色背景

绘制消息数

绘制背景

Canvas有现成的 API 绘制圆圈:

public class Canvas extends BaseCanvas {

/**

* Draw the specified circle using the specified paint. If radius is <= 0, then nothing will be

* drawn. The circle will be filled or framed based on the Style in the paint.

*

* @param cx The x-coordinate of the center of the cirle to be drawn

* @param cy The y-coordinate of the center of the cirle to be drawn

* @param radius The radius of the cirle to be drawn

* @param paint The paint used to draw the circle

*/

public void drawCircle(float cx, float cy, float radius, @NonNull Paint paint) {

super.drawCircle(cx, cy, radius, paint);

}

}

复制代码

只需计算出圆心坐标和半径,然后在onDraw()中调用该 API 即可绘制。

背景的圆心应该是消息数的中心点,背景的半径依赖于消息数的长短,比如,9 条未读消息就比 999 条的背景要小一圈。

绘制消息数

先绘制背景,再绘制消息数,是为了不让其被背景挡住。

Canvas有现成的 API 绘制文字:

public class Canvas extends BaseCanvas {

/**

* Draw the text, with origin at (x,y), using the specified paint. The origin is interpreted

* based on the Align setting in the paint.

*

* @param text The text to be drawn

* @param x The x-coordinate of the origin of the text being drawn

* @param y The y-coordinate of the baseline of the text being drawn

* @param paint The paint used for the text (e.g. color, size, style)

*/

public void drawText(@NonNull String text, float x, float y, @NonNull Paint paint) {

super.drawText(text, x, y, paint);

}

}

复制代码

其中第三个参数y是指文字基线的纵坐标,如下图所示:

6a87c520231465cd06ac320b8eef1837.png

画文字的关键是求出基线在父控件中的纵坐标,当前 case 的示意图如下:

af6f3aae64f02bc1e02e536a94c5b62b.png

圆圈代表小红点的背景,紫线是圆圈的直径,也是文字的中轴线。小红点绘制在控件的右上角,圆圈的上边和右边分别贴住控件的上边和右边,所以圆圈顶部切线的纵坐标为 0。问题变成已知半径raduis,top,bottom,求 baseLine 纵坐标?(top是负值,bottom为正值)

分解一下计算步骤:

raduis:紫线的纵坐标

(bottom - top) / 2:文字区域总高度的一半

radius + (bottom - top) / 2:文字底部的纵坐标

文字底部的纵坐标减掉 bottom 的值就是基线的纵坐标:

baseline = radius + (bottom - top) / 2 - bottom

然后只要在自定义控件的onDraw()中先绘制背景再绘制消息数即可,自定义控件完整代码如下:

//'自定义TextView'

open class TagTextView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0) : AppCompatTextView(context, attrs, defStyleAttr) {

//'消息数字体大小'

var tagTextSize: Float = 0F

set(value) {

field = value

textPaint.textSize = value

}

//'消息数字体颜色'

var tagTextColor: Int = Color.parseColor("#FFFFFF")

set(value) {

field = value

textPaint.color = value

}

//'背景色'

var tagBgColor: Int = Color.parseColor("#FFFF5183")

set(value) {

field = value

bgPaint.color = value

}

//'消息数字体'

var tagTextTypeFace: Typeface? = null

//'消息数'

var tagText: String? = null

//'背景和消息数的间距'

var tagTextPaddingTop: Float = 5f

var tagTextPaddingBottom: Float = 5f

var tagTextPaddingStart: Float = 5f

var tagTextPaddingEnd: Float = 5f

//'消息数字体区域'

private var textRect: Rect = Rect()

//'消息数画笔'

private var textPaint: Paint = Paint()

//'背景画笔'

private var bgPaint: Paint = Paint()

init {

//'构建消息数画笔'

textPaint.apply {

color = tagTextColor

textSize = tagTextSize

isAntiAlias = true

textAlign = Paint.Align.CENTER

style = Paint.Style.FILL

tagTextTypeFace?.let { typeface = tagTextTypeFace }

}

//'构建背景画笔'

bgPaint.apply {

isAntiAlias = true

style = Paint.Style.FILL

color = tagBgColor

}

}

override fun onDraw(canvas: Canvas?) {

super.onDraw(canvas)

//'只有当消息数不为空时才绘制小红点'

tagText?.takeIf { it.isNotEmpty() }?.let { text ->

textPaint.apply {

//'1.获取消息数区域大小'

getTextBounds(text, 0, text.length, textRect)

fontMetricsInt.let {

//'背景宽=消息数区域宽+边距'

val bgWidth = (textRect.right - textRect.left) + tagTextPaddingStart + tagTextPaddingEnd

//'背景高=消息数区域高+边距'

val bgHeight = tagTextPaddingBottom + tagTextPaddingTop + it.bottom - it.top

//'取宽高中的较大值作为半径'

val radius = if (bgWidth > bgHeight) bgWidth / 2 else bgHeight / 2

val centerX = width - radius

val centerY = radius

//'2.绘制背景'

canvas?.drawCircle(centerX, centerY, radius, bgPaint)

//'3.绘制基线'

val baseline = radius + (it.bottom - it.top) / 2 - it.bottom

canvas?.drawText(text, width - radius, baseline, textPaint)

}

}

}

}

}

复制代码

然后就能像这样使用自定义控件:

在布局文件中声明

xmlns:app="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:id="@+id/ttv"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:padding="8dp"

android:text="bug"/>

复制代码在 Activity 中引用并设置参数:

class TagTextViewActivity:AppCompatActivity() {

override fun onCreate(savedInstanceState: Bundle?) {

super.onCreate(savedInstanceState)

setContentView(R.layout.tag_textview_activity)

ttv.tagText = "+99"

ttv.tagTextSize = dip(8F)

ttv.tagTextColor = Color.YELLOW

}

}

复制代码

把小红点的显示细节隐藏在一个自定义View中,这样布局文件和业务层代码会更加简洁清晰。

但这个方案也有以下缺点:

控件类型绑定:若当前界面分别有一个TextView、ImageView和Button需要显示小红点,那就需要分别构建三种类型的自定义View。

控件需留 padding:小红点是控件的一部分,为了不让小红点与控件本体内容重叠,控件需给小红点留有 padding,即控件占用空间会变大,在布局文件中可能引起连锁反应,使得其他控件位置也需要跟着微调。

于是乎就有了第三种方案~~

容器控件绘制方案

第三种方案较前两种略复杂,限于篇幅就留到下一篇接着讲。

这篇关于android自定义控件类型,Android自定义控件 | 小红点的三种实现(上)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

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

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

【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

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

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

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略 1. 特权模式限制2. 宿主机资源隔离3. 用户和组管理4. 权限提升控制5. SELinux配置 💖The Begin💖点点关注,收藏不迷路💖 Kubernetes的PodSecurityPolicy(PSP)是一个关键的安全特性,它在Pod创建之前实施安全策略,确保P