TextView z innym textSize


88

Czy można ustawić inny textSize w jednym TextView? Wiem, że mogę zmienić styl tekstu za pomocą:

TextView textView = (TextView) findViewById(R.id.textView);
Spannable span = new SpannableString(textView.getText());
span.setSpan(arg0, 1, 10, arg3);
textView.setText(span)

Znam zakres początek ... koniec tekstu Chcę zmienić rozmiar. Ale czego mogę użyć jako arg0i arg3?

Odpowiedzi:


198

Próbować

span.setSpan(new RelativeSizeSpan(0.8f), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

1
Wygląda poprawnie, ale nie działa. Cały tekst w moim TextView ma cały czas ten sam rozmiar.
woyaru

1
Hmm może powinienem zastosować (zaktualizować) zakres do mojego TextView po setSpan ()?
woyaru

4
Przepraszam za moje 3 komentarze, ale rozwiązałem ten problem. Tylko: textView.setText(span).
woyaru

czy wiesz, jak mogę połączyć rozmiar z kolorem na rozpiętość?
Ionut Negru

23

Wiem, że późno odpowiadam, ale ludzie wciąż mogą mieć to samo pytanie, nawet ja bardzo się z tym zmagałem. Załóżmy, że masz te dwa ciągi w swoim pliku strings.xml

 <string name="my_text">You will need a to complete this assembly</string>
 <string name="text_sub1">screwdriver, hammer, and measuring tape</string>

Teraz musisz zdefiniować dla nich dwa style w swoim style.xml z różnymi rozmiarami textSize

<style name="style0">
    <item name="android:textSize">19sp</item>
    <item name="android:textColor">@color/standout_text</item>
    <item name="android:textStyle">bold</item>
</style>
<style name="style1">
    <item name="android:textSize">23sp</item>
    <item name="android:textColor">@color/standout_light_text</item>
    <item name="android:textStyle">italic</item>
</style>

Teraz z pliku Java musisz użyć spannable, aby załadować te dwa style i ciągi do pojedynczego textView

SpannableString formattedSpan = formatStyles(getString(R.string.my_text), getString(R.string.text_sub0), R.style.style0, getString(R.string.main_text_sub1), R.style.style1);
textView.setText(formattedSpan, TextView.BufferType.SPANNABLE);

Poniżej znajduje się metoda formatStyles, która zwróci sformatowany ciąg po zastosowaniu stylu

private SpannableString formatStyles(String value, String sub0, int style0, String sub1, int style1)
{ 
    String tag0 = "{0}";
    int startLocation0 = value.indexOf(tag0);
    value = value.replace(tag0, sub0);

    String tag1 = "{1}";
    int startLocation1 = value.indexOf(tag1);
    if (sub1 != null && !sub1.equals(""))
    { 
        value = value.replace(tag1, sub1);
    } 
    SpannableString styledText = new SpannableString(value);
    styledText.setSpan(new TextAppearanceSpan(getActivity(), style0), startLocation0, startLocation0 + sub0.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
    if (sub1 != null && !sub1.equals(""))
    { 
        styledText.setSpan(new TextAppearanceSpan(getActivity(), style1), startLocation1, startLocation1 + sub1.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
    } 

    return styledText;
}

12

Spróbuj z AbsoluteSizeSpan

snackbarText.setSpan(new AbsoluteSizeSpan(fontsize, true), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

Kompletny kod to:

SpannableStringBuilder snackbarText = new SpannableStringBuilder();
snackbarText.append("Your text");
snackbarText.setSpan(new AbsoluteSizeSpan(fontsize, true), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
Snackbar.make(getCurrentFocus(), snackbarText, Snackbar.LENGTH_LONG).setAction("Action", null).show();`
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.