gpt4 book ai didi

java - 如何在 Textview 中写入突出显示的文本

转载 作者:行者123 更新时间:2023-12-02 13:29:56 25 4
gpt4 key购买 nike

你们能告诉我如何在 TextView 中编写java代码吗?我希望它有颜色,就像我编写java代码一样。我找到了一个由两种类型的文本组成的示例,我认为它们都是 TextView,但第二个包含突出显示文本和左侧的绿色条,你们能告诉我如何做到这一点吗?(抱歉,我无法上传图片)

最佳答案

试试这个,

public static void setText(TextView textView, String text) {
Spannable spannable = new SpannableString(text);

// For Foreground Highlight
spannable.setSpan(new ForegroundColorSpan(fromColor(ColorCode)), highlight.start, highlight.end, 0);

// For Background Highlight
spannable.setSpan(new BackgroundColorSpan(fromColor(ColorCode)), highlight.start, highlight.end, 0);

textView.setText(spannable);
}

关于java - 如何在 Textview 中写入突出显示的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43227290/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com