111

我的应用程序中的 AListView有许多字符串元素,如name, experience,date of joining等。我只想name加粗。所有字符串元素都将位于一个TextView.

我的XML

<ImageView
    android:id="@+id/logo"
    android:layout_width="55dp"
    android:layout_height="55dp"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="5dp"
    android:layout_marginTop="15dp" >
</ImageView>

<TextView
    android:id="@+id/label"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/logo"
    android:padding="5dp"
    android:textSize="12dp" >
</TextView>

我设置 ListView 项的 TextView 的代码:

holder.text.setText(name + "\n" + expirience + " " + dateOfJoininf);
4

9 回答 9

257

假设您有一个TextView被调用的etx. 然后,您将使用以下代码:

final SpannableStringBuilder sb = new SpannableStringBuilder("HELLOO");
      
final StyleSpan bss = new StyleSpan(android.graphics.Typeface.BOLD); // Span to make text bold
final StyleSpan iss = new StyleSpan(android.graphics.Typeface.ITALIC); //Span to make text italic
sb.setSpan(bss, 0, 4, Spannable.SPAN_INCLUSIVE_INCLUSIVE); // make first 4 characters Bold 
sb.setSpan(iss, 4, 6, Spannable.SPAN_INCLUSIVE_INCLUSIVE); // make last 2 characters Italic

etx.setText(sb);

于 2012-06-11T12:11:13.400 回答
31

根据 Imran Rana 的回答,如果您需要将StyleSpans 应用于多个TextViews 并支持多种语言(其中索引是可变的),这是一种通用的、可重用的方法:

void setTextWithSpan(TextView textView, String text, String spanText, StyleSpan style) {
    SpannableStringBuilder sb = new SpannableStringBuilder(text);
    int start = text.indexOf(spanText);
    int end = start + spanText.length();
    sb.setSpan(style, start, end, Spannable.SPAN_INCLUSIVE_INCLUSIVE);
    textView.setText(sb);
}

像这样使用它Activity

@Override
protected void onCreate(Bundle savedInstanceState) {
    // ...

    StyleSpan boldStyle = new StyleSpan(Typeface.BOLD);
    setTextWithSpan((TextView) findViewById(R.id.welcome_text),
        getString(R.string.welcome_text),
        getString(R.string.welcome_text_bold),
        boldStyle);

    // ...
}

strings.xml

<string name="welcome_text">Welcome to CompanyName</string>
<string name="welcome_text_bold">CompanyName</string>

结果:

欢迎来到公司名

于 2016-01-14T14:16:09.753 回答
20

您可以使用 Kotlin 和buildSpannedString扩展功能从core-ktx

 holder.textView.text = buildSpannedString {
        bold { append("$name\n") }
        append("$experience $dateOfJoining")
 }
于 2019-10-11T17:00:44.207 回答
14

此处提供的答案是正确的,但不能在循环中调用,因为该StyleSpan对象是单个连续跨度(不是可以应用于多个跨度的样式)。setSpan使用相同的粗体多次调用StyleSpan将创建一个粗体跨度并在父跨度中移动它。

就我而言(显示搜索结果),我需要使所有搜索关键字的所有实例都显示为粗体。这就是我所做的:

private static SpannableStringBuilder emboldenKeywords(final String text,
                                                       final String[] searchKeywords) {
    // searching in the lower case text to make sure we catch all cases
    final String loweredMasterText = text.toLowerCase(Locale.ENGLISH);
    final SpannableStringBuilder span = new SpannableStringBuilder(text);

    // for each keyword
    for (final String keyword : searchKeywords) {
        // lower the keyword to catch both lower and upper case chars
        final String loweredKeyword = keyword.toLowerCase(Locale.ENGLISH);

        // start at the beginning of the master text
        int offset = 0;
        int start;
        final int len = keyword.length(); // let's calculate this outside the 'while'

        while ((start = loweredMasterText.indexOf(loweredKeyword, offset)) >= 0) {
            // make it bold
            span.setSpan(new StyleSpan(Typeface.BOLD), start, start+len, SPAN_INCLUSIVE_INCLUSIVE);
            // move your offset pointer 
            offset = start + len;
        }
    }

    // put it in your TextView and smoke it!
    return span;
}

请记住,如果一个关键字是另一个关键字的子字符串,则上面的代码不够聪明,无法跳过双粗体字。例如,如果您在“Fishs in the Fisty Sea”中搜索“Fish fi” ,它会将“fish”加粗一次,然后是“fi”部分。好消息是,虽然效率低下且有点不受欢迎,但它不会有视觉缺陷,因为您显示的结果仍然看起来像

大海中的

于 2016-11-04T00:43:30.357 回答
6

如果您不确切知道要加粗的文本部分之前的文本长度,或者甚至不知道要加粗的文本的长度,您可以轻松地使用如下 HTML 标记:

yourTextView.setText(Html.fromHtml("text before " + "<font><b>" + "text to be Bold" + "</b></font>" + " text after"));
于 2017-07-11T06:31:43.347 回答
1

我建议使用带有 CDATA 的 strings.xml 文件

<string name="mystring"><![CDATA[ <b>Hello</b> <i>World</i> ]]></string>

然后在java文件中:

TextView myTextView = (TextView) this.findViewById(R.id.myTextView);
myTextView.setText(Html.fromHtml( getResources().getString(R.string.mystring) ));
于 2014-03-07T00:20:59.087 回答
1
<string name="My_Name">Given name is <b>Not Right</b>Please try again </string>

在 string.xml 文件中使用“b”标签。
也适用于斜体“i”和下划线“u”。

于 2020-12-04T20:30:22.740 回答
1

将 Frieder 的答案扩展到支持大小写和变音符号不敏感。

public static String stripDiacritics(String s) {
        s = Normalizer.normalize(s, Normalizer.Form.NFD);
        s = s.replaceAll("[\\p{InCombiningDiacriticalMarks}]", "");
        return s;
}

public static void setTextWithSpan(TextView textView, String text, String spanText, StyleSpan style, boolean caseDiacriticsInsensitive) {
        SpannableStringBuilder sb = new SpannableStringBuilder(text);
        int start;
        if (caseDiacriticsInsensitive) {
            start = stripDiacritics(text).toLowerCase(Locale.US).indexOf(stripDiacritics(spanText).toLowerCase(Locale.US));
        } else {
            start = text.indexOf(spanText);
        }
        int end = start + spanText.length();
        if (start > -1)
            sb.setSpan(style, start, end, Spannable.SPAN_INCLUSIVE_INCLUSIVE);
        textView.setText(sb);
    }
于 2017-01-10T11:56:09.157 回答
1

如果您使用@srings / your_string 注释,请访问strings.xml 文件并<b></b>在您想要的文本部分中使用标签。

例子:

    <string><b>Bold Text</b><i>italic</i>Normal Text</string>
于 2020-01-31T21:04:46.217 回答