“一行代码解决 Android 关键字高亮、多种颜色“ Kotlin 扩展函数版

概述

showHighText 是一个 Kotlin 函数,用于在 TextView 中突出显示关键字。

工作原理:

  1. 首先,函数检查 contentTextkeyword 是否为空。如果是,则不做任何操作并返回。
  2. 然后,函数创建一个 SpannableStringBuilder 对象。该对象允许我们将不同的样式(例如突出显示)应用于文本的部分。
  3. 接下来,函数将 keyword 参数转换为小写并存储在 lowercaseKeywords 列表中。这确保了后续的大小写不敏感匹配。(也可以自己更改一下,加一个参数动态设置)
  4. 然后,函数使用管道 ("|") 符号将 lowercaseKeywords 连接起来创建一个正则表达式。这允许我们匹配 contentText 中的任何关键字。
  5. 最后,函数使用 Matcher 对象在 contentText 中查找匹配的关键字。对于每个匹配的关键字,函数会将 ForegroundColorSpan 应用于相应的文本范围,以突出显示该关键字。

总的来说,showHighText 函数提供了一种方便的方法来突出显示 TextView 中的多个关键字,可以指定不同的颜色。

效果

代码

kotlin 复制代码
fun TextView.showHighText(
    contentText: String,
    vararg keyword: String,
    colors: List<Int> = listOf(MaterialColors.getColor(this, android.R.attr.colorPrimary))
) {
    if (contentText.isNullOrEmpty() || keyword.isNullOrEmpty()) return
    val stringBuilder = SpannableStringBuilder(contentText)
    val lowercaseKeywords = keyword.map { it.lowercase(Locale.getDefault()) }
    val regex = lowercaseKeywords.joinToString("|")

    val matcher = Pattern.compile(regex).matcher(contentText.lowercase(Locale.getDefault()))
    while (matcher.find()) {
        val start = matcher.start()
        val end = matcher.end()
        val color = colors[start % colors.size]
        stringBuilder.setSpan(
            ForegroundColorSpan(color),
            start,
            end,
            Spanned.SPAN_INCLUSIVE_INCLUSIVE
        )
    }
    this.text = stringBuilder
}

代码解析

函数签名

kotlin 复制代码
fun TextView.showHighText( contentText: String, vararg keyword: String, colors: List<Int> = listOf(MaterialColors.getColor(this, android.R.attr.colorPrimary)) )
  • 该函数有三个参数:

    • contentText: 要显示在 TextView 中的主文本。
    • keyword: 要突出显示在 contentText 中的关键字,可以传入多个。
    • colors: (可选) 用于突出显示关键字的颜色列表。如果未提供,将使用主题中的默认颜色。

函数体

  1. 空值检查 : 函数首先检查 contentTextkeyword 是否为空或空。如果是,则不做任何操作并返回。

  2. SpannableStringBuilder: 创建一个名为 stringBuilderSpannableStringBuilder 对象。此对象允许我们将不同的样式(例如突出显示)应用于文本的部分。

  3. 小写关键字: 将 keyword 参数转换为小写并存储在 lowercaseKeywords 列表中。这确保了后续的大小写不敏感匹配。

  4. 正则表达式: 使用管道 ("|") 符号将 lowercaseKeywords 连接起来创建一个正则表达式。这允许我们匹配 contentText 中的任何关键字。

  5. Matcher: 使用编译后的正则表达式和 contentText 的 lowercase 版本创建一个 Matcher 对象。

  6. 突出显示循环: 函数进入一个循环,直到 matcher 无法找到任何更多关键字匹配。在循环中:

    • 获取匹配关键字的 startend 位置。
    • 使用 start 位置与 colors 列表大小的模来确定突出显示的颜色。这确保每个关键字都获得不同的颜色(如果提供了足够的颜色)。
    • 创建具有所选颜色的 ForegroundColorSpan 对象。
    • ForegroundColorSpan 应用于匹配关键字范围(startend) 在 stringBuilder 对象中。
  7. 设置文本: 最后,将 text 属性设置为 stringBuilder 对象。这将显示原始文本以及突出显示的关键字。

使用

kotlin 复制代码
binding.titleTextView.showHighText(title,keyword)
binding.contentTextView.showHighText(content,keyword,keyword2,keyword3,
    colors = listOf<Int>(
        Color.parseColor("#5F8670"),
        Color.parseColor("#FF9800")
    )
)

注意

假设 colors 列表至少有与关键字数量相同的元素。如果没有,则默认使用Colors中的第1个颜色

参考文章

Android设置文本关键字高亮效果

相关推荐
m0_748254666 分钟前
go官方日志库带色彩格式化
android·开发语言·golang
zhangphil6 分钟前
Android使用PorterDuffXfermode模式PorterDuff.Mode.SRC_OUT橡皮擦实现“刮刮乐”效果,Kotlin(2)
android·kotlin
爱学测试的李木子28 分钟前
从0到1搭建 Android 自动化 python+appium 环境
android·软件测试·python·测试工具·自动化
咸芝麻鱼39 分钟前
Android Studio | 连接手机设备后,启动App时出现:Waiting For DebuggerApplication (App名)...
android·adb·智能手机·android studio
叶羽西39 分钟前
Android Studio Gradle Sync timeout
android·ide·android studio
m0_748256141 小时前
Android 关于Tencent vConsole 添加入webView 总结
android
开发者阿伟2 小时前
Android Jetpack DataBinding源码解析与实践
android·android jetpack
AirDroid_qs2 小时前
Niushop开源商城(漏洞复现)
android·网络安全·开源
Autumn.h2 小时前
niushop开源商城靶场漏洞
android
戏谑3 小时前
Android 常用布局
android·view