首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 最新雪王 type__1286 参数逆向分析,K哥带你免费喝一杯~

    (text, styles) { let styledText = text; // RGB颜色 if (styles.color) { styledText = `\x1b[38;2;${styles.color[0]};${styles.color[1]};${styles.color[2]}m${styledText}\x1b[0m (styles.bold) { styledText = `\x1b[1m${styledText}\x1b[0m`; } // 斜体 if (styles.italic) { styledText = `\x1b[3m${styledText}\x1b[0m`; } // 下划线 if (styles.underline) { styledText = `\x1b[4m${styledText}\x1b[0m`; } // 返回带样式的文本

    58410编辑于 2024-08-06
  • 来自专栏鸿蒙开发笔记

    纯血鸿蒙APP实战开发——Text实现部分文本高亮和超链接样式

    textBackgroundStyle({ color: this.linkBackgroundColor }) }}高性能知识点本示例使用了LazyForEach进行数据懒加载工程结构&模块类型 styledtext TextModel.ets // 数据类型定义 |---/src/main/ets/pages | |---StyledText.ets

    49020编辑于 2025-02-13
  • 来自专栏xingoo, 一个梦想做发明家的程序员

    【插件开发】—— 9 编辑器代码分块着色-高亮显示!

    document); sqlEditor.getControl().setLayoutData(new GridData(GridData.FILL_BOTH)); StyledText org.eclipse.jface.text.source.VerticalRuler; 30 import org.eclipse.swt.SWT; 31 import org.eclipse.swt.custom.StyledText 70 sqlEditor.getControl().setLayoutData(new GridData(GridData.FILL_BOTH)); 71 72 StyledText

    3.1K60发布于 2018-01-18
  • 来自专栏Android群英传

    真·富文本编辑器的演进之路-【译】破解Span性能之谜

    ( bulletSpan, 0, 4, Spanned.SPAN_INCLUSIVE_INCLUSIVE) styledText.setText bulletSpan.color = Color.GRAY // color won’t be changed until invalidate is called styledText.invalidate

    2K10发布于 2021-03-16
  • 来自专栏Android 开发者

    [译] 论 Android 中 Span 的正确打开方式

    ( bulletSpan, 0, 4, Spanned.SPAN_INCLUSIVE_INCLUSIVE) styledText.setText bulletSpan.color = Color.GRAY // color won’t be changed until invalidate is called styledText.invalidate

    2.1K50发布于 2018-06-06
  • 来自专栏叽叽西

    安卓 topic-字符串资源 string-resource

    String text = String.format(res.getString(R.string.welcome_messages), username, mailCount); CharSequence styledText

    1.3K10编辑于 2022-05-17
  • 来自专栏技术之路

    Qt5 新特性

    当 textFormat 设置为 AutoText 时,自动转换为 StyledText 而不是 RichText, TextEdit – textFormat 属性的默认值为 PlainText 而不是

    9.2K80发布于 2018-01-31
领券