TextView unique avec plusieurs textes colorés


168

Comme le titre l'indique, je veux savoir s'il est possible d'obtenir deux caractères colorés différents dans un seul élément textview.



1
Ce n'est pas en double puisque le demandeur demande spécifiquement la couleur.
Iqbal


J'ai aussi écrit une bibliothèque qui a un comportement similaire à celui-ci: github.com/ha-yi/MultiColorTextView
Hayi Nukman

Réponses:


328

oui, si vous formatez la propriété Stringwith html, font-colortransmettez-la à la méthodeHtml.fromHtml(your text here)

String text = "<font color=#cc0029>First Color</font> <font color=#ffcc00>Second Color</font>";
yourtextview.setText(Html.fromHtml(text));

Merci également utile pour moi. +1
Hardik Joshi

10
N'oubliez pas d'échapper à userinput en utilisant Html.escapeHtml(str).
kelunik

1
Ajouté au niveau api 1
2red13

3
Juste un avertissement. J'avais un problème lorsque j'avais besoin que mon texte soit en majuscules. J'utilisais android: textAllCaps = "true" en XML et, en même temps, j'avais mon contenu HTML en majuscules. Ça ne marchait pas. J'ai supprimé l'attribut XML et cela fonctionne maintenant très bien. Soyez prudent, car si vous utilisez setAllCaps () dans le code, le même problème apparaîtra.
joao2fast4u

5
Html.fromHtml(String)est désormais obsolète, utilisez plutôt Html.fromHtml(String, Html.FROM_HTML_MODE_LEGACY). Plus d'informations peuvent être trouvées ici.
JediBurrell

165

Vous pouvez imprimer des lignes avec plusieurs couleurs sans HTML comme:

TextView textView = (TextView) findViewById(R.id.mytextview01);
Spannable word = new SpannableString("Your message");        

word.setSpan(new ForegroundColorSpan(Color.BLUE), 0, word.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

textView.setText(word);
Spannable wordTwo = new SpannableString("Your new message");        

wordTwo.setSpan(new ForegroundColorSpan(Color.RED), 0, wordTwo.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.append(wordTwo);

super, merci, peut également faire BackgroundColorSpan. il y a une petite faute de frappe dans votre exemple, WordToSpan et WordtoSpan, notez le cas sur To
steveh

comment faire un test unitaire de la vue de texte pour s'assurer que le texte se termine par Color.RED stackoverflow.com/questions/26611533/…
sudocoder

1
Ne fonctionne pas pour moi obtenir `java.lang.StringIndexOutOfBoundsException: length = 3; index = 12`
Muhammad Babar

1
StringIndexOutOfBoundsException elle-même explicative. Vous accédez à la chaîne au-delà de sa longueur.
Swapnil Kotwal

1
Mes chaînes n'étaient pas fixes, donc les chaînes seraient générées au moment de l'exécution de l'application. J'ai essayé presque toutes les réponses à cette question. Mais seule cette solution a fonctionné pour moi.
Md. Sabbir Ahmed

33

Vous pouvez utiliser Spannablepour appliquer des effets à votre TextView:

Voici mon exemple pour colorer uniquement la première partie d'un TextViewtexte (tout en vous permettant de définir la couleur de manière dynamique plutôt que de la coder en dur dans une chaîne comme dans l'exemple HTML!)

    mTextView.setText("Red text is here", BufferType.SPANNABLE);
    Spannable span = (Spannable) mTextView.getText();
    span.setSpan(new ForegroundColorSpan(0xFFFF0000), 0, "Red".length(),
             Spannable.SPAN_INCLUSIVE_EXCLUSIVE);

Dans cet exemple, vous pouvez remplacer 0xFFFF0000 par un getResources().getColor(R.color.red)


1
Si vous avez besoin de ces majuscules, il suffit de toUpperCase () les chaînes.
Graeme du

33

J'ai fait de cette façon:

Vérifier la référence

Définissez la couleur sur le texte en passant la chaîne et la couleur :

private String getColoredSpanned(String text, String color) {
    String input = "<font color=" + color + ">" + text + "</font>";
    return input;
}

Définissez le texte sur TextView / Button / EditText, etc. en appelant le code ci-dessous:

Affichage:

TextView txtView = (TextView)findViewById(R.id.txtView);

Obtenez une chaîne colorée:

String name = getColoredSpanned("Hiren", "#800000");
String surName = getColoredSpanned("Patel","#000080");

Définissez le texte sur TextView de deux chaînes avec des couleurs différentes:

txtView.setText(Html.fromHtml(name+" "+surName));

Terminé


1
nyc one, mais le HTml.fromHtml est obsolète à partir de l'API 24
Anuraj R

Vous pouvez remplacer les appels vers Html.fromHtml("...")par des appels versHtml.fromHtml("...", FROM_HTML_MODE_LEGACY)
stkent

31

Utilisez SpannableStringBuilder

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

8

Hé les gars, j'ai fait ça, essayez-le

TextView textView=(TextView)findViewById(R.id.yourTextView);//init

//here I am appending two string into my textView with two diff colors.
//I have done from fragment so I used here getActivity(), 
//If you are trying it from Activity then pass className.this or this; 

textView.append(TextViewUtils.getColoredString(getString(R.string.preString),ContextCompat.getColor(getActivity(),R.color.firstColor)));
textView.append(TextViewUtils.getColoredString(getString(R.string.postString),ContextCompat.getColor(getActivity(),R.color.secondColor)));

À l'intérieur de votre classe TextViewUtils, ajoutez cette méthode

 /***
 *
 * @param mString this will setup to your textView
 * @param colorId  text will fill with this color.
 * @return string with color, it will append to textView.
 */
public static Spannable getColoredString(String mString, int colorId) {
    Spannable spannable = new SpannableString(mString);
    spannable.setSpan(new ForegroundColorSpan(colorId), 0, spannable.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    Log.d(TAG,spannable.toString());
    return spannable;
}

Je viens de mettre à jour, vérifiez-le une fois, cela fonctionne pour moi.
Abdul Rizwan le

Myabe vous utilisez Html.fromHtml pour utiliser cette chaîne?
Sergey Shustikov le

dans le fichier string.xml J'ai créé une variable et défini ceci, cela fonctionne pour moi en ce moment je le fais, pouvez-vous s'il vous plaît donner votre chaîne ici.
Abdul Rizwan le

5

Il est préférable d'utiliser la chaîne dans le fichier de chaînes, en tant que telle:

    <string name="some_text">
<![CDATA[
normal color <font color=\'#06a7eb\'>special color</font>]]>
    </string>

Usage:

textView.text=HtmlCompat.fromHtml(getString(R.string.some_text), HtmlCompat.FROM_HTML_MODE_LEGACY)

4

J'ai écrit un code pour une autre question similaire à celle-ci, mais cette question a été dupliquée, je ne peux donc pas y répondre, je mets simplement mon code ici si quelqu'un cherche la même exigence.

Ce code ne fonctionne pas entièrement, vous devez apporter des modifications mineures pour le faire fonctionner.

Voici le code:

J'ai utilisé l'idée @Graeme d'utiliser du texte spannable.

String colorfulText = "colorfulText";       
    Spannable span = new SpannableString(colorfulText);             

    for ( int i = 0, len = colorfulText.length(); i < len; i++ ){
        span.setSpan(new ForegroundColorSpan(getRandomColor()), i, i+1,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);                     
    }   

    ((TextView)findViewById(R.id.txtSplashscreenCopywrite)).setText(span);

Méthode de couleur aléatoire:

  private int getRandomColor(){
        Random rnd = new Random();
        return Color.argb(255, rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256));
    }

2

Essaye ça:

mBox = new TextView(context);
mBox.setText(Html.fromHtml("<b>" + title + "</b>" +  "<br />" + 
      "<small>" + description + "</small>" + "<br />" + 
      "<small>" + DateAdded + "</small>"));

2

Utilisez la classe SpannableBuilder au lieu du formatage HTML lorsque cela est possible, car il est plus rapide que l'analyse du format HTML. Voir mon propre benchmark "SpannableBuilder vs HTML" sur Github Merci!


1

Des réponses géniales! J'ai pu utiliser Spannable pour créer du texte de couleur arc-en-ciel (afin que cela puisse être répété pour n'importe quel tableau de couleurs). Voici ma méthode, si cela aide quelqu'un:

private Spannable buildRainbowText(String pack_name) {
        int[] colors = new int[]{Color.RED, 0xFFFF9933, Color.YELLOW, Color.GREEN, Color.BLUE, Color.RED, 0xFFFF9933, Color.YELLOW, Color.GREEN, Color.BLUE, Color.RED, 0xFFFF9933, Color.YELLOW, Color.GREEN, Color.BLUE, Color.RED, 0xFFFF9933, Color.YELLOW, Color.GREEN, Color.BLUE};
        Spannable word = new SpannableString(pack_name);
        for(int i = 0; i < word.length(); i++) {
            word.setSpan(new ForegroundColorSpan(colors[i]), i, i+1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        }
        return word;
    }

Et puis je viens de setText (buildRainboxText (pack_name)); Notez que tous les mots que je passe ont moins de 15 caractères et que cela ne fait que répéter 5 couleurs 3 fois - vous voudrez ajuster les couleurs / la longueur du tableau en fonction de votre utilisation!


1
if (Build.VERSION.SDK_INT >= 24) {
     Html.fromHtml(String, flag) // for 24 API  and more
 } else {
     Html.fromHtml(String) // or for older API 
 }

pour 24 API et plus (drapeau)

public static final int FROM_HTML_MODE_COMPACT = 63;
public static final int FROM_HTML_MODE_LEGACY = 0;
public static final int FROM_HTML_OPTION_USE_CSS_COLORS = 256;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_BLOCKQUOTE = 32;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_DIV = 16;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_HEADING = 2;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_LIST = 8;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_LIST_ITEM = 4;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_PARAGRAPH = 1;
public static final int TO_HTML_PARAGRAPH_LINES_CONSECUTIVE = 0;
public static final int TO_HTML_PARAGRAPH_LINES_INDIVIDUAL = 1;

Plus d'informations


1

Depuis l'API 24, vous avez FROM_HTML_OPTION_USE_CSS_COLORS afin que vous puissiez définir les couleurs en CSS au lieu de le répéter tout le temps avec font color=" beaucoup plus clair - lorsque vous avez du html et que vous souhaitez mettre en évidence des balises prédéfinies - il vous suffit d'ajouter un fragment CSS en haut de votre html


0

25 juin 2020 par @canerkaseler

Je voudrais partager la réponse de Kotlin :

fun setTextColor(tv:TextView, startPosition:Int, endPosition:Int, color:Int){
    val spannableStr = SpannableString(tv.text)

    val underlineSpan = UnderlineSpan()
    spannableStr.setSpan(
        underlineSpan,
        startPosition,
        endPosition,
        Spanned.SPAN_INCLUSIVE_EXCLUSIVE
    )

    val backgroundColorSpan = ForegroundColorSpan(this.resources.getColor(R.color.agreement_color))
    spannableStr.setSpan(
        backgroundColorSpan,
        startPosition,
        endPosition,
        Spanned.SPAN_INCLUSIVE_EXCLUSIVE
    )

    val styleSpanItalic = StyleSpan(Typeface.BOLD)
    spannableStr.setSpan(
        styleSpanItalic,
        startPosition,
        endPosition,
        Spanned.SPAN_INCLUSIVE_EXCLUSIVE
    )

    tv.text = spannableStr
}

Après, appelez la fonction ci-dessus. Vous pouvez appeler plus d'un:

setTextColor(textView, 0, 61, R.color.agreement_color)
setTextColor(textView, 65, 75, R.color.colorPrimary)

Sortie: vous pouvez voir le soulignement et différentes couleurs les uns avec les autres.

@canerkaseler

En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.