Chcę zmienić tekst widoku TextView za pomocą metody .setText („”), jednocześnie kolorując część tekstu (lub nadając mu pogrubienie, kursywę, przezroczystość itp.), A nie resztę. Na przykład:
title.setText("Your big island <b>ADVENTURE!</b>";
Wiem, że powyższy kod jest nieprawidłowy, ale pomaga zilustrować to, co chciałbym osiągnąć. Jak bym to zrobił?
Odpowiedzi:
Użyj rozpiętości .
Przykład:
final SpannableStringBuilder sb = new SpannableStringBuilder("your text here"); // Span to set text color to some RGB value final ForegroundColorSpan fcs = new ForegroundColorSpan(Color.rgb(158, 158, 158)); // Span to make text bold final StyleSpan bss = new StyleSpan(android.graphics.Typeface.BOLD); // Set the text color for first 4 characters sb.setSpan(fcs, 0, 4, Spannable.SPAN_INCLUSIVE_INCLUSIVE); // make them also bold sb.setSpan(bss, 0, 4, Spannable.SPAN_INCLUSIVE_INCLUSIVE); yourTextView.setText(sb);
źródło
title.setText(Html.fromHtml("Your big island <b>ADVENTURE!</b>"));
źródło
<font color="#FFAADD>text</font>
nie zadziała?Mam nadzieję, że to ci pomoże (działa w wielu językach).
<string name="test_string" ><![CDATA[<font color="%1$s"><b>Test/b></font>]]> String</string>
A w kodzie java możesz:
int color = context.getResources().getColor(android.R.color.holo_blue_light); String string = context.getString(R.string.test_string, color); textView.setText(Html.fromHtml(string));
W ten sposób tylko część „Test” zostanie pokolorowana (i pogrubiona).
źródło
Oto przykład, który wyszuka wszystkie wystąpienia słowa (bez rozróżniania wielkości liter) i pokoloruje je na czerwono:
String notes = "aaa AAA xAaax abc aaA xxx"; SpannableStringBuilder sb = new SpannableStringBuilder(notes); Pattern p = Pattern.compile("aaa", Pattern.CASE_INSENSITIVE); Matcher m = p.matcher(notes); while (m.find()){ //String word = m.group(); //String word1 = notes.substring(m.start(), m.end()); sb.setSpan(new ForegroundColorSpan(Color.rgb(255, 0, 0)), m.start(), m.end(), Spannable.SPAN_INCLUSIVE_INCLUSIVE); } editText.setText(sb);
źródło
Możesz użyć a,
Spannable
aby nadać określonym częściom tekstu określone aspekty. Jeśli chcesz, mogę znaleźć przykład.Ach, stąd na przepełnieniu stosu .
TextView TV = (TextView)findViewById(R.id.mytextview01); Spannable WordtoSpan = new SpannableString("I know just how to whisper, And I know just how to cry,I know just where to find the answers"); WordtoSpan.setSpan(new ForegroundColorSpan(Color.BLUE), 15, 30, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); TV.setText(WordtoSpan);
źródło
Jeśli korzystasz z Kotlina, możesz wykonać następujące czynności za pomocą biblioteki android-ktx
val title = SpannableStringBuilder() .append("Your big island ") .bold { append("ADVENTURE") } titleTextField.text = title
bold
Jest funkcja rozszerzenie naSpannableStringBuilder
. Możesz zobaczyć dokumentację tutaj zawierającą listę operacji, których możesz użyć.Inny przykład:
val ssb = SpannableStringBuilder() .color(green) { append("Green text ") } .append("Normal text ") .scale(0.5F) { append("Text at half size ") } .backgroundColor(green) { append("Background green") }
Gdzie
green
jest rozwiązany kolor RGB.Możliwe jest nawet zagnieżdżanie przęseł, więc kończy się coś w rodzaju osadzonego DSL:
Aby aplikacja
build.gradle
działała, potrzebne będą następujące elementy :repositories { google() } dependencies { implementation 'androidx.core:core-ktx:0.3' }
źródło
val spannableStringBuilder = SpannableStringBuilder() spannableStringBuilder.bold { underline { color(R.color.test_color) { append(underlinedText) } } }
Jeśli chcesz używać HTML, musisz użyć
TextView.setText(Html.fromHtml(String htmlString))
Jeśli chcesz to robić często / wielokrotnie, możesz rzucić okiem na klasę ( SpannableBuilder ), którą napisałem, ponieważ
Html.fromHtml()
nie jest zbyt wydajna (używa wewnątrz dużej maszyny parsującej XML). Jest to opisane w tym wpisie na blogu .źródło
public static void setColorForPath(Spannable spannable, String[] paths, int color) { for (int i = 0; i < paths.length; i++) { int indexOfPath = spannable.toString().indexOf(paths[i]); if (indexOfPath == -1) { continue; } spannable.setSpan(new ForegroundColorSpan(color), indexOfPath, indexOfPath + paths[i].length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); } }
Za pomocą
Spannable spannable = new SpannableString("Your big island ADVENTURE"); Utils.setColorForPath(spannable, new String[] { "big", "ADVENTURE" }, Color.BLUE); textView.setText(spannable);
źródło
String str1 = "If I forget my promise to "; String penalty = "Eat breakfast every morning,"; String str2 = " then I "; String promise = "lose my favorite toy"; String strb = "<u><b><font color='#081137'>"+ penalty +",</font></b></u>"; String strc = "<u><b><font color='#081137'>"+ promise + "</font></b></u>"; String strd = str1 +strb+ str2 + strc; tv_notification.setText(Html.fromHtml(strd));
lub użyj tego kodu:
źródło
Lubię używać
SpannableStringBuilder
, dołączając różne rozpiętości jeden po drugim, zamiast wywoływać setSpan przez obliczanie długości ciągówas: (kod Kotlin)
val amountSpannableString = SpannableString("₹$amount").apply { // text color setSpan(ForegroundColorSpan("#FD0025".parseColor()), 0, length, 0) // text size setSpan(AbsoluteSizeSpan(AMOUNT_SIZE_IN_SP.spToPx(context)), 0, length, 0) // font medium setSpan(TypefaceSpan(context.getString(R.string.font_roboto_medium)), 0, length, 0) } val spannable: Spannable = SpannableStringBuilder().apply { // append the different spans one by one // rather than calling setSpan by calculating the string lengths append(TEXT_BEFORE_AMOUNT) append(amountSpannableString) append(TEXT_AFTER_AMOUNT) }
źródło
Możesz połączyć dwa lub więcej zakresów. W ten sposób łatwiej jest pokolorować dynamiczny tekst za pomocą wartości długości.
SpannableStringBuilder span1 = new SpannableStringBuilder("Android"); ForegroundColorSpan color1=new ForegroundColorSpan(getResources().getColor(R.color.colorPrimary)); span1.setSpan(color1, 0, span1.length(), Spannable.SPAN_INCLUSIVE_INCLUSIVE); SpannableStringBuilder span2 = new SpannableStringBuilder("Love"); ForegroundColorSpan color2=new ForegroundColorSpan(getResources().getColor(R.color.colorSecondary)); span2.setSpan(color2, 0, span2.length(), Spannable.SPAN_INCLUSIVE_INCLUSIVE); Spanned concatenated=(Spanned) TextUtils.concat(span1," => ",span2); SpannableStringBuilder result = new SpannableStringBuilder(concatenated); TextView tv = (TextView) rootView.findViewById(R.id.my_texview); tv.setText(result, TextView.BufferType.SPANNABLE);
źródło
Użyj tego kodu, jest to pomocne
TextView txtTest = (TextView) findViewById(R.id.txtTest); txtTest.setText(Html.fromHtml("This is <font color="#ff4343">Red</font> Color!"));
źródło
Html.fromHtml
jest przestarzałyZamiast tego użyj HtmlCompat
HtmlCompat.fromHtml(html, HtmlCompat.FROM_HTML_MODE_LEGACY)
źródło