TextAppearanceSpan的使用

SpannableStringBuilder可以用來(lái)實(shí)現(xiàn)富文本樣式讼载。
TextAppearanceSpan是系統(tǒng)提供的用來(lái)修改文本簡(jiǎn)單樣式:

  • 設(shè)置不同的文字大小
  • 設(shè)置不同的文字顏色
  • 設(shè)置文字的字體
  • 設(shè)置文字粗體
  • 超鏈接顏色
    fun testSpan() {
        var builder = SpannableStringBuilder()
        var price = "10,837"
        var note = "當(dāng)前價(jià)"
        builder.append("¥")
        builder.append("${price} ")
        builder.append(note)

        //默認(rèn)字體,粗體毅该,文字大屑嘤摇:60边灭,紅色
        var yuanSpan = TextAppearanceSpan(
            null, Typeface.BOLD, 60,
            ColorStateList.valueOf(resources.getColor(R.color._C6100E)), null
        )
        builder.setSpan(yuanSpan, 0, 1, SpannableStringBuilder.SPAN_EXCLUSIVE_EXCLUSIVE)

        //默認(rèn)字體,粗體健盒,文字大腥奘荨:80,紅色
        var priceSpan = TextAppearanceSpan(
            null, Typeface.BOLD, 80,
            ColorStateList.valueOf(resources.getColor(R.color._C6100E)), null
        )
        builder.setSpan(
            priceSpan,
            1,
            price.length + 1,
            SpannableStringBuilder.SPAN_EXCLUSIVE_EXCLUSIVE
        )

        //serif字體扣癣,正常惰帽,文字大小:60父虑,灰色
        var noteSpan = TextAppearanceSpan(
            "sans", Typeface.NORMAL, 60,
            ColorStateList.valueOf(resources.getColor(R.color._888888)), null
        )
        builder.setSpan(
            noteSpan,
            builder.length - note.length,
            builder.length,
            SpannableStringBuilder.SPAN_EXCLUSIVE_EXCLUSIVE
        )

        findViewById<TextView>(R.id.tv_app).setText(builder)
    }

效果如圖:


¥10,837當(dāng)前價(jià).jpg

!

TextAppearanceSpan支持的屬性该酗,可以從源碼中獲得:


    /**
     * Uses the specified TextAppearance resource to determine the
     * text appearance, and the specified text color resource
     * to determine the color.  The <code>appearance</code> should be,
     * for example, <code>android.R.style.TextAppearance_Small</code>,
     * and the <code>colorList</code> should be, for example,
     * <code>android.R.styleable.Theme_textColorPrimary</code>.
     */
    public TextAppearanceSpan(Context context, int appearance, int colorList) {
        ColorStateList textColor;

        TypedArray a =
            context.obtainStyledAttributes(appearance,
                                           com.android.internal.R.styleable.TextAppearance);
        //字體顏色
        textColor = a.getColorStateList(com.android.internal.R.styleable.
                                        TextAppearance_textColor);
       //超鏈接顏色
        mTextColorLink = a.getColorStateList(com.android.internal.R.styleable.
                                        TextAppearance_textColorLink);
       //字體大小
        mTextSize = a.getDimensionPixelSize(com.android.internal.R.styleable.
                                        TextAppearance_textSize, -1);
        //風(fēng)格:粗體、斜體士嚎、正常
        mStyle = a.getInt(com.android.internal.R.styleable.TextAppearance_textStyle, 0);

        //字體
        if (!context.isRestricted() && context.canLoadUnsafeResources()) {
            mTypeface = a.getFont(com.android.internal.R.styleable.TextAppearance_fontFamily);
        } else {
            mTypeface = null;
        }
        if (mTypeface != null) {
            mFamilyName = null;
        } else {
            String family = a.getString(com.android.internal.R.styleable.TextAppearance_fontFamily);
            if (family != null) {
                mFamilyName = family;
            } else {
                int tf = a.getInt(com.android.internal.R.styleable.TextAppearance_typeface, 0);

                switch (tf) {
                    case 1:
                        mFamilyName = "sans";
                        break;

                    case 2:
                        mFamilyName = "serif";
                        break;

                    case 3:
                        mFamilyName = "monospace";
                        break;

                    default:
                        mFamilyName = null;
                        break;
                }
            }
        }

        mTextFontWeight = a.getInt(com.android.internal.R.styleable
                .TextAppearance_textFontWeight, -1);

        final String localeString = a.getString(com.android.internal.R.styleable
                .TextAppearance_textLocale);
        if (localeString != null) {
            LocaleList localeList = LocaleList.forLanguageTags(localeString);
            if (!localeList.isEmpty()) {
                mTextLocales = localeList;
            } else {
                mTextLocales = null;
            }
        } else {
            mTextLocales = null;
        }

         //文字投影
        mShadowRadius = a.getFloat(com.android.internal.R.styleable
                .TextAppearance_shadowRadius, 0.0f);
        mShadowDx = a.getFloat(com.android.internal.R.styleable
                .TextAppearance_shadowDx, 0.0f);
        mShadowDy = a.getFloat(com.android.internal.R.styleable
                .TextAppearance_shadowDy, 0.0f);
        mShadowColor = a.getInt(com.android.internal.R.styleable
                .TextAppearance_shadowColor, 0);

        mHasElegantTextHeight = a.hasValue(com.android.internal.R.styleable
                .TextAppearance_elegantTextHeight);
        mElegantTextHeight = a.getBoolean(com.android.internal.R.styleable
                .TextAppearance_elegantTextHeight, false);

        mHasLetterSpacing = a.hasValue(com.android.internal.R.styleable
                .TextAppearance_letterSpacing);
        mLetterSpacing = a.getFloat(com.android.internal.R.styleable
                .TextAppearance_letterSpacing, 0.0f);

        mFontFeatureSettings = a.getString(com.android.internal.R.styleable
                .TextAppearance_fontFeatureSettings);

        mFontVariationSettings = a.getString(com.android.internal.R.styleable
                .TextAppearance_fontVariationSettings);

        a.recycle();

        if (colorList >= 0) {
            a = context.obtainStyledAttributes(com.android.internal.R.style.Theme,
                                            com.android.internal.R.styleable.Theme);

            textColor = a.getColorStateList(colorList);
            a.recycle();
        }

        mTextColor = textColor;
    }
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末呜魄,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子莱衩,更是在濱河造成了極大的恐慌爵嗅,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,194評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件笨蚁,死亡現(xiàn)場(chǎng)離奇詭異睹晒,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)赚窃,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門册招,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人勒极,你說(shuō)我怎么就攤上這事是掰。” “怎么了辱匿?”我有些...
    開封第一講書人閱讀 156,780評(píng)論 0 346
  • 文/不壞的土叔 我叫張陵键痛,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我匾七,道長(zhǎng)絮短,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,388評(píng)論 1 283
  • 正文 為了忘掉前任昨忆,我火速辦了婚禮丁频,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己席里,他們只是感情好叔磷,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評(píng)論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著奖磁,像睡著了一般改基。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上咖为,一...
    開封第一講書人閱讀 49,764評(píng)論 1 290
  • 那天秕狰,我揣著相機(jī)與錄音,去河邊找鬼躁染。 笑死鸣哀,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的褐啡。 我是一名探鬼主播诺舔,決...
    沈念sama閱讀 38,907評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼备畦!你這毒婦竟也來(lái)了低飒?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,679評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤懂盐,失蹤者是張志新(化名)和其女友劉穎褥赊,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體莉恼,經(jīng)...
    沈念sama閱讀 44,122評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡拌喉,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了俐银。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片尿背。...
    茶點(diǎn)故事閱讀 38,605評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖捶惜,靈堂內(nèi)的尸體忽然破棺而出田藐,到底是詐尸還是另有隱情,我是刑警寧澤吱七,帶...
    沈念sama閱讀 34,270評(píng)論 4 329
  • 正文 年R本政府宣布汽久,位于F島的核電站,受9級(jí)特大地震影響踊餐,放射性物質(zhì)發(fā)生泄漏景醇。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評(píng)論 3 312
  • 文/蒙蒙 一吝岭、第九天 我趴在偏房一處隱蔽的房頂上張望三痰。 院中可真熱鬧吧寺,春花似錦、人聲如沸酒觅。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)舷丹。三九已至,卻和暖如春蜓肆,著一層夾襖步出監(jiān)牢的瞬間颜凯,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工仗扬, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留症概,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,297評(píng)論 2 360
  • 正文 我出身青樓早芭,卻偏偏與公主長(zhǎng)得像彼城,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子退个,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評(píng)論 2 348