textSizeが異なるTextView


90

1つのTextViewで異なるtextSizeを設定することは可能ですか?次を使用してテキストスタイルを変更できることを知っています。

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

サイズを変更したいテキストの範囲の開始...終了を知っています。しかし、私は何をとして使用することができますarg0arg3

回答:


201

試してみてください

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

1
見た目は適切ですが、機能しません。TextViewのテキスト全体は、常に同じサイズです。
woyaru 2011

1
うーん、setSpan()の後にスパンをTextViewに適用(更新)する必要があるかもしれませんか?
woyaru 2011

4
3つのコメントで申し訳ありませんが、この問題は解決しました。ただ:textView.setText(span)
woyaru 2011

サイズとスパンの色を組み合わせる方法を知っていますか?
Ionut Negru 2014

23

答えるのがとても遅いのはわかっていますが、人々はまだ同じ質問をしているかもしれません。私でさえ、これについて多くの苦労をしました。これらの2つの文字列が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>

ここで、異なるtextSizeを使用してstyle.xml内で2つのスタイルを定義する必要があります。

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

次に、Javaファイルから、spannableを使用して、これら2つのスタイルと文字列を単一の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);

以下は、スタイルを適用した後にフォーマットされた文字列を返すformatStylesメソッドです。

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

13

AbsoluteSizeSpanでお試しください

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

完全なコードは次のとおりです。

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();`
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.