रनटाइम में एंड्रॉइड में टेक्स्ट को बोल्ड का हिस्सा कैसे बनाएं?


97

एक ListViewअपने आवेदन में इस तरह के कई स्ट्रिंग तत्व है 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);

जवाबों:


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
ज़मारिन के लिए, इस तरह का उपयोग करेंvar bss = new StyleSpan(Android.Graphics.TypefaceStyle.Bold);
एलिजाबेथ

ज़मारिन के लिए,etx.TextFormatted = sb;
डेरियस

27

इमरान राणा के जवाब के आधार पर, यहाँ एक सामान्य, पुन: प्रयोज्य विधि यदि आप लागू करने की आवश्यकता है StyleSpanकई को रों 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ही बोल्ड एक से अधिक बार 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;
}

ध्यान रखें कि यदि एक कीवर्ड दूसरे का विकल्प है, तो डबल-बॉल्डिंग को छोड़ देने के लिए उपरोक्त कोड पर्याप्त स्मार्ट नहीं है। उदाहरण के लिए, यदि आप "फिस्टी सी में मछलियों " के अंदर "फिश फाई" खोजते हैं तो यह "फिश" को एक बार बोल्ड कर देगा और फिर "फाई" भाग। अच्छी बात यह है कि अक्षम और थोड़ा अवांछनीय होने पर, इसमें दृश्य दोष नहीं होगा क्योंकि आपका प्रदर्शित परिणाम अभी भी दिखेगा

फाई स्टाइल सागर में मछली


हे आदमी आप कृपया यह देख सकते stackoverflow.com/questions/59947482/...
पेम्बा तमांग

6

आप इसे कोटलिन और 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>

फिर जावा फ़ाइल में:

TextView myTextView = (TextView) this.findViewById(R.id.myTextView);
myTextView.setText(Html.fromHtml( getResources().getString(R.string.mystring) ));
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.