Cambia il colore del testo di una parola in un TextView


97

Sto cercando un modo per cambiare il colore di un testo di una singola parola in a TextViewdall'interno di un file Activity.

Ad esempio, con questo:

String first = "This word is ";
String next = "red"
TextView t = (TextView) findViewById(R.id.textbox);
t.setText(first + next);

Come cambierei il colore del nexttesto in rosso?




Risposte:


172

Il modo più semplice che conosco è usare solo html.

String first = "This word is ";
String next = "<font color='#EE0000'>red</font>";
t.setText(Html.fromHtml(first + next));

Ma questo richiederà di ricostruire il TextView quando (se?) Vuoi cambiare il colore, il che potrebbe causare problemi.


1
Questo è sicuramente il modo più semplice, ma il colore non dovrebbe essere color = '# EE0000' il simbolo della sterlina è necessario per denotare un colore esadecimale.
Tom

Risolto, grazie! Non ricordo se l'ho copiato dal codice effettivo o dalla memoria con un sito Web di generatore di colori, quindi potrebbe non aver funzionato prima.
Dan

Ok solo assicurandomi! Inoltre, come ho scoperto, non è possibile utilizzare codici esadecimali a 8 cifre, quindi nessun componente alfa. Quello mi ha lasciato perplesso per un momento.
Tom

L'utilizzo fromHtmlè ora deprecato
Alex Jolig

Html.fromHtmlè deprecato. Questa soluzione ha funzionato per me!
coderpc

74
t.setText(first + next, BufferType.SPANNABLE);
Spannable s = (Spannable)t.getText();
int start = first.length();
int end = start + next.length();
s.setSpan(new ForegroundColorSpan(0xFFFF0000), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

devi usare spannable questo ti permetterà anche di aumentare la dimensione del testo, renderlo in grassetto ecc .... anche inserire qualche immagine.


4
Buona risposta, grazie. In questo caso si può usare "s.length ()" invece di "start + next.length ()": int end = s.length ();
Oleg

1
Nel caso in cui qualcuno cerchi la soluzione Xamarin.Android. È possibile assegnare un SpannableStringoggetto utilizzando TextFormattedProprietà del controllo.
Jamshaid Kamran

Impossibile farlo funzionare. Finito per andare con la soluzione di BK.
2b77bee6-5445-4c77-b1eb-4df3e5

1. se c'è una build è sempre meglio usarla. 2. cosa non ha funzionato per te? questa soluzione è vecchia, molto vecchia, alcune API sono cambiate, aggiunte, rimosse, risolte bug, cosa non ha funzionato esattamente?
codeScriber

2
Ottengo java.lang.String cannot be cast to android.text.Spannableerrore.
lashgar

37

Usa SpannableStringBuilder in questo modo:

SpannableStringBuilder builder = new SpannableStringBuilder();

SpannableString str1= new SpannableString("Text1");
str1.setSpan(new ForegroundColorSpan(Color.RED), 0, str1.length(), 0);
builder.append(str1);

SpannableString str2= new SpannableString(appMode.toString());
str2.setSpan(new ForegroundColorSpan(Color.GREEN), 0, str2.length(), 0);
builder.append(str2);

TextView tv = (TextView) view.findViewById(android.R.id.text1);
tv.setText( builder, TextView.BufferType.SPANNABLE);

C'è qualcosa che posso sostituire new ForegroundColorSpan(Color)per fare in modo che il testo mantenga il suo colore predefinito originale?
cjnash

Come aggiungere testo normale (stringa) nel mezzo della visualizzazione testo?
Ragavendra M

5

per una stringa lunga puoi usare questo:

String help = getString(R.string.help);
help = help.replace("some word", "<font color='#EE0000'>some word</font>");
txtDesc.setText(Html.fromHtml(help));

2

Se si desidera modificare lo stato di tutte le istanze di una specifica Stringall'interno di un TextViewtesto (case insensitive) è possibile utilizzare StringBuilders e SpannableStringin questo modo:

StringBuilder textBuilder = new StringBuilder(myTextView.getText().toString());
StringBuilder searchedTextBuilder = new StringBuilder((mySearchedString));
SpannableString spannableString = new SpannableString(myTextView.getText().toString());

int counter = 0;
int index = 0;

for (int i = 0;i < textBuilder.length() - mySearchedString.length() - 1;i++)
{
    counter = 0;
    if (Character.toLowerCase(textBuilder.charAt(i)) == Character.toLowerCase(searchedTextBuilder.charAt(index)))
    {
        counter++;
        index++;
        for (int j = 1,z = i + 1;j < mySearchedString.length() - 1;j++,z++)
        {
            if (Character.toLowerCase(textBuilder .charAt(z)) == Character.toLowerCase(searchedTextBuilder .charAt(index)))
            {
                counter++;
                index++;
            }
            else
            {
                index++;
                if (index % mySearchedString.length() == 0)
                {
                    index = 0;
                }
                break;
             }
        }
        if (counter == mySearchedString.length() - 1) // A match
        {
            spannableString.setSpan(new ForegroundColorSpan(Color.RED), i,
                                i + mySearchedString.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); // Do the change you want(In this case changing the fore ground color to red)
            index = 0;
            continue;
        }
        else
        {
            index = 0;
            continue;
        }
    }
}
myTextView.setText(spannableString);

}

  • Memorizza l'intero TextViewtesto all'interno di un file StringBuilder.
  • Memorizza la stringa cercata all'interno di un file StringBuilder.
  • Memorizza l'intero TextViewtesto all'interno di un fileSpannableString
  • Effettua una semplice operazione per trovare tutte le Stringistanze all'interno del TextViewtesto e modificarle una volta raggiunte.
  • Imposta il valore del testo di TextViewsu SpannableString.

1

Ho implementato una funzione di utilità in Kotlin per il mio caso d'uso e forse utile per qualcun altro.

fun getCusomTextWithSpecificTextWithDiffColor(textToBold: String, fullText: String,
                                                  targetColor: Int) =
            SpannableStringBuilder(fullText).apply {
                setSpan(ForegroundColorSpan(targetColor),
                        fullText.indexOf(textToBold),
                        (fullText.indexOf(textToBold) + textToBold.length),
                        Spannable.SPAN_EXCLUSIVE_EXCLUSIVE)
            }

Come lo sto usando:

context?.let {
        infoMessage.text = AppUtils.getCusomTextWithSpecificTextWithDiffColor(
                wordAsBold,
                completeSentence, ContextCompat.getColor(it, R.color.white))
    }

1

USO:

makeTextBold("Your order is accepted","accepted", textView);
makeTextBold("Your order is canceled","canceled", textView);

Funzione:

public static void makeTextBold(String sentence, String word, AppCompatTextView textView) {
    SpannableStringBuilder builder = new SpannableStringBuilder();
    int startIndex = sentence.indexOf(word.toLowerCase().trim());
    int endIndex = startIndex + word.toLowerCase().trim().length();
    SpannableString spannableString = new SpannableString(sentence);
    StyleSpan boldSpan = new StyleSpan(Typeface.BOLD);
    spannableString.setSpan(boldSpan, startIndex, endIndex, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); //To make text Bold
    spannableString.setSpan(new ForegroundColorSpan(Color.RED), startIndex, endIndex, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); //To change color of text
    builder.append(spannableString);
    textView.setText(builder, TextView.BufferType.SPANNABLE);
}

0

Penso che questo sia più leggibile per colorare una parola in una stringa, probabilmente è anche un po 'più efficiente perché scrivi una volta

    String str  = YOUR_STRING
    Spannable s = new SpannableString(str);
    int start = str.indexOf(err_word_origin);
    int end =  start + err_word_origin.length();
    s.setSpan(new ForegroundColorSpan(Color.BLUE), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    YOUR_TEXT_VIEW.setText(s , TextView.BufferType.SPANNABLE);
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.