実行時にAndroidで太字のテキストの一部を作成する方法は?


96

ListView私のアプリケーションでは、のような多くの文字列要素があるnameexperiencedate 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);

回答:


229

あなたが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);


2
Xamarinの場合は、次のように使用しますvar bss = new StyleSpan(Android.Graphics.TypefaceStyle.Bold);
Elisabeth

Xamarinの場合etx.TextFormatted = sb;
ダリウス

27

Imran Ranaの回答に基づいて、複数の言語をサポートするStyleSpansを複数TextViewのに適用する必要がある場合の一般的な再利用可能なメソッドを次に示します(インデックスは可変です)。

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>

結果:

CompanyNameへようこそ


12

ここで提供される答えは正しいですが、StyleSpanオブジェクトは単一の連続したスパン(複数のスパンに適用できるスタイルではない)であるため、ループで呼び出すことはできません。setSpan同じボールドで複数回呼び出すと、1つのボールドスパン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;
}

上記のコードは、一方のキーワードが他方のサブストリングである場合、二重太字をスキップするほどスマートではないことに注意してください。たとえば、「Fishes in the fisty Sea」内で「Fish fi」を検索すると、「fish」が 1回太字になり、次に「fi」部分が太字になります。良い点は、非効率的で少し望ましくありませんが、表示される結果は次のようになるため、視覚的な欠点はありません。

におけるES Fi回線 STYの海


ちょっと男は、あなたがこの参照してくださいすることができますstackoverflow.com/questions/59947482/...
ペンバ・タマン

6

あなたはKotlinとbuildSpannedString拡張機能を使用してそれを行うことができますcore-ktx

 holder.textView.text = buildSpannedString {
        bold { append("$name\n") }
        append("$experience $dateOfJoining")
 }

5

太字にするテキスト部分の前のテキストの長さが正確にわからない場合、または太字にするテキストの長さがわからない場合でも、次のようなHTMLタグを簡単に使用できます。

yourTextView.setText(Html.fromHtml("text before " + "<font><b>" + "text to be Bold" + "</b></font>" + " text after"));

0

フライヤーの回答を拡張して、ケースと発音区別記号の無反応をサポートします。

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);
    }

0

@ srings / your_stringアノテーションを使用している場合は、strings.xmlファイルにアクセスして、<b></b>必要なテキストの部分でタグを使用します。

例:

    <string><b>Bold Text</b><i>italic</i>Normal Text</string>

-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) ));
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.