在Android中使用Html.fromHtml()突出显示文本颜色?

问题描述 投票:0回答:11

我正在开发一个应用程序,其中会有一个搜索屏幕 用户可以在其中搜索特定关键字,并且该关键字应该是 突出显示。我找到了 Html.fromHtml 方法。

但我想知道这是否是正确的做法或 不。

请告诉我您对此的看法。

android text highlight textview
11个回答
226
投票

或者比手动处理

Spannable
简单得多,因为你没有说你想要突出显示背景,只是文本:

String styledText = "This is <font color='red'>simple</font>.";
textView.setText(Html.fromHtml(styledText), TextView.BufferType.SPANNABLE);

44
投票

使用 xml 资源中的颜色值:

int labelColor = getResources().getColor(R.color.label_color);
String сolorString = String.format("%X", labelColor).substring(2); // !!strip alpha value!!

Html.fromHtml(String.format("<font color=\"#%s\">text</font>", сolorString), TextView.BufferType.SPANNABLE); 

13
投票

这可以使用 Spannable String 来实现。您将需要导入以下内容

import android.text.SpannableString; 
import android.text.style.BackgroundColorSpan; 
import android.text.style.StyleSpan;

然后您可以使用类似以下内容更改文本的背景:

TextView text = (TextView) findViewById(R.id.text_login);
text.setText("");
text.append("Your text here");
Spannable sText = (Spannable) text.getText();
sText.setSpan(new BackgroundColorSpan(Color.RED), 1, 4, 0);

这将以红色突出显示位置 1 - 4 处的字符。希望这有帮助!


6
投票

字体已弃用,请改用 span

Html.fromHtml("<span style=color:red>"+content+"</span>")


5
投票

替代解决方案:使用 WebView 代替。 Html 很容易使用。

WebView webview = new WebView(this);

String summary = "<html><body>Sorry, <span style=\"background: red;\">Madonna</span> gave no results</body></html>";

webview.loadData(summary, "text/html", "utf-8");

5
投票
 String name = modelOrderList.get(position).getName();   //get name from List
    String text = "<font color='#000000'>" + name + "</font>"; //set Black color of name
    /* check API version, according to version call method of Html class  */
    if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.N) {
        Log.d(TAG, "onBindViewHolder: if");
        holder.textViewName.setText(context.getString(R.string._5687982) + " ");
        holder.textViewName.append(Html.fromHtml(text));
    } else {
        Log.d(TAG, "onBindViewHolder: else");
        holder.textViewName.setText("123456" + " ");   //set text 
        holder.textViewName.append(Html.fromHtml(text, Html.FROM_HTML_MODE_LEGACY));   //append text into textView
    }

1
投票

使部分文本带有下划线和彩色

在你的 strings.xml 中

<string name="text_with_colored_underline">put the text here and &lt;u>&lt;font color="#your_hexa_color">the underlined colored part here&lt;font>&lt;u></string>

然后在活动中

yourTextView.setText(Html.fromHtml(getString(R.string.text_with_colored_underline)));

对于可点击的链接:

<string name="text_with_link"><![CDATA[<p>text before link<a href=\"http://www.google.com\">title of link</a>.<p>]]></string>

在您的活动中:

yourTextView.setText(Html.fromHtml(getString(R.string.text_with_link)));
yourTextView.setMovementMethod(LinkMovementMethod.getInstance());

1
投票

首先将字符串转换为 HTML,然后将其转换为可扩展的。按照以下代码的建议进行操作。

 Spannable spannable = new SpannableString(Html.fromHtml(labelText));
                    
spannable.setSpan(new ForegroundColorSpan(Color.parseColor(color)), spannable.toString().indexOf("•"), spannable.toString().lastIndexOf("•") + 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
            

0
投票
textview.setText(Html.fromHtml("<font color='rgb'>"+text contain+"</font>"));

它将给出与您在 html 编辑器中所做的颜色完全相同的颜色,只需设置 textview 并将其与 textview 值连接即可。 Android 不支持跨度颜色,在编辑器中将其更改为字体颜色即可。


0
投票

还添加 Kotlin 版本:

  • 从资源中获取文本(
    strings.xml
    )
  • 从资源中获取颜色(
    colors.xml
    )
  • “获取十六进制”作为扩展移动
fun getMulticolorSpanned(): Spanned {
    // Get text from resources
    val text: String = getString(R.string.your_text_from_resources)

    // Get color from resources and parse it to HEX (RGB) value
    val warningHexColor = getHexFromColors(R.color.your_error_color)

    // Use above string & color in HTML
    val html = "<string>$text<span style=\"color:#$warningHexColor;\">*</span></string>"

    // Parse HTML (base on API version)
    return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
        Html.fromHtml(html, Html.FROM_HTML_MODE_LEGACY)
    } else {
        Html.fromHtml(html)
    }
}

和 Kotlin 扩展(删除 alpha):

fun Context.getHexFromColors(
    colorRes: Int
): String {
    val labelColor: Int = ContextCompat.getColor(this, colorRes)
    return String.format("%X", labelColor).substring(2)
}

演示


0
投票

我发现直接使用十六进制颜色对应的负整数小数可以正确渲染透明度:

val str=String.format("<font color="%s">Highlighting</font>",
        //convert to the negative integer decimal
        context.getColor(R.color.highlight).toString())
textView.text = Html.fromHtml(str,Html.FROM_HTML_MODE_COMPACT)
© www.soinside.com 2019 - 2024. All rights reserved.