android強大的SpannableStringBuilder

前言
工做之中用到的,分享給你們android

參考:http://blog.csdn.net/fengkuanghun/article/details/7904284複製代碼

SpannableStringBuilder和SpannableString的區別相似與StringBuilder、String,就是SpannableStringBuilder能夠拼接,而SpannableString不可拼接。bash

連接:www.jianshu.com/p/f004300c6…app

主要的方法ide

SpannableStringBuilder和SpannableString主要經過使用setSpan(Object what, int start, int end, int flags)改變文本樣式。
對應的參數:字體

start: 指定Span的開始位置
end: 指定Span的結束位置,並不包括這個位置。
flags:取值有以下四個
    Spannable. SPAN_INCLUSIVE_EXCLUSIVE:前面包括,後面不包括,即在文本前插入新的文本會應用該樣式,而在文本後插入新文本不會應用該樣式
    Spannable. SPAN_INCLUSIVE_INCLUSIVE:前面包括,後面包括,即在文本前插入新的文本會應用該樣式,而在文本後插入新文本也會應用該樣式
    Spannable. SPAN_EXCLUSIVE_EXCLUSIVE:前面不包括,後面不包括
    Spannable. SPAN_EXCLUSIVE_INCLUSIVE:前面不包括,後面包括
what: 對應的各類Span,不一樣的Span對應不一樣的樣式。已知的可用類有:
    BackgroundColorSpan : 文本背景色
    ForegroundColorSpan : 文本顏色
    MaskFilterSpan : 修飾效果,如模糊(BlurMaskFilter)浮雕
    RasterizerSpan : 光柵效果
    StrikethroughSpan : 刪除線
    SuggestionSpan : 至關於佔位符
    UnderlineSpan : 下劃線
    AbsoluteSizeSpan : 文本字體(絕對大小)
    DynamicDrawableSpan : 設置圖片,基於文本基線或底部對齊。
    ImageSpan : 圖片
    RelativeSizeSpan : 相對大小(文本字體)
    ScaleXSpan : 基於x軸縮放
    StyleSpan : 字體樣式:粗體、斜體等
    SubscriptSpan : 下標(數學公式會用到)
    SuperscriptSpan : 上標(數學公式會用到)
    TextAppearanceSpan : 文本外貌(包括字體、大小、樣式和顏色)
    TypefaceSpan : 文本字體
    URLSpan : 文本超連接
    ClickableSpan : 點擊事件複製代碼

用法ui

先在xml中建立一個TextView:this

<TextView
    android:id="@+id/mode1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="18dp" />複製代碼

SpannableStringBuilder和SpannableString的用法差很少,這邊先舉一個SpannableString的例子spa

SpannableString
    修改字體顏色

    /**
     * 使用SpannableString設置樣式——字體顏色
     */
    private void mode1() {
        SpannableString spannableString = new SpannableString("暗影IV已經開始暴走了");
        ForegroundColorSpan colorSpan = new ForegroundColorSpan(Color.parseColor("#009ad6"));
        spannableString.setSpan(colorSpan, 0, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        ((TextView)findViewById(R.id.mode1)).setText(spannableString);
    }

    建立SpannableString的時候,傳入須要顯示的字符串。使用ForegroundColorSpan爲文字設置顏色。
    效果:

    字體顏色複製代碼

後面都以SpannableStringBuilder爲例子.net

SpannableStringBuilder

    修改字體顏色

    /**
     * 使用SpannableStringBuilder設置樣式——字體顏色
     */
    private void mode2() {
        SpannableStringBuilder spannableString = new SpannableStringBuilder();
        spannableString.append("暗影IV");
        spannableString.append("已經開始暴走了");
        ForegroundColorSpan colorSpan = new ForegroundColorSpan(Color.parseColor("#009ad6"));
        spannableString.setSpan(colorSpan, 0, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        ((TextView)findViewById(R.id.mode2)).setText(spannableString);
    }

    這裏就能夠看出SpannableStringBuilder的可拼接性,這裏一樣採用了ForegroundColorSpan爲文本設置顏色。


    /**
     * 使用SpannableStringBuilder設置樣式——背景顏色
     */
    private void mode3() {
        SpannableStringBuilder spannableString = new SpannableStringBuilder();
        spannableString.append("暗影IV已經開始暴走了");
        BackgroundColorSpan bgColorSpan = new BackgroundColorSpan(Color.parseColor("#009ad6"));
        spannableString.setSpan(bgColorSpan, 0, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        ((TextView)findViewById(R.id.mode3)).setText(spannableString);
    }

    使用BackgroundColorSpan設置背景顏色。


    /**
     * 使用SpannableStringBuilder設置樣式——字體大小
     */
    private void mode4() {
        SpannableStringBuilder spannableString = new SpannableStringBuilder();
        spannableString.append("暗影IV已經開始暴走了");
        AbsoluteSizeSpan absoluteSizeSpan = new AbsoluteSizeSpan(20);
        spannableString.setSpan(absoluteSizeSpan, 0, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        ((TextView)findViewById(R.id.mode4)).setText(spannableString);
    }

    使用AbsoluteSizeSpan設置字體大小。


    /**
     * 使用SpannableStringBuilder設置樣式——粗體\斜體
     */
    private void mode5() {
        SpannableStringBuilder spannableString = new SpannableStringBuilder();
        spannableString.append("暗影IV已經開始暴走了");
        //setSpan可屢次使用
        StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);//粗體
        spannableString.setSpan(styleSpan, 0, 3, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        StyleSpan styleSpan2 = new StyleSpan(Typeface.ITALIC);//斜體
        spannableString.setSpan(styleSpan2, 3, 6, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        StyleSpan styleSpan3 = new StyleSpan(Typeface.BOLD_ITALIC);//粗斜體
        spannableString.setSpan(styleSpan3, 6, 9, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        ((TextView)findViewById(R.id.mode5)).setText(spannableString);
    }



    粗體\斜體
    刪除線

    /**
     * 使用SpannableStringBuilder設置樣式——刪除線
     */
    private void mode6() {
        SpannableStringBuilder spannableString = new SpannableStringBuilder();
        spannableString.append("暗影IV已經開始暴走了");
        StrikethroughSpan strikethroughSpan = new StrikethroughSpan();
        spannableString.setSpan(strikethroughSpan, 0, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        ((TextView)findViewById(R.id.mode6)).setText(spannableString);
    }

    StrikethroughSpa使用StrikethroughSpan設置刪除線。

    刪除線
    下劃線

    /**
     * 使用SpannableStringBuilder設置樣式——下劃線
     */
    private void mode7() {
        SpannableStringBuilder spannableString = new SpannableStringBuilder();
        spannableString.append("暗影IV已經開始暴走了");
        UnderlineSpan underlineSpan = new UnderlineSpan();
        spannableString.setSpan(underlineSpan, 0, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        ((TextView)findViewById(R.id.mode7)).setText(spannableString);
    }

    使用UnderlineSpan設置下劃線。

    下劃線
    不只支持文字樣式,還能夠插入圖片。厲害了個人SpannableStringBuilder~~

    /**
     * 使用SpannableStringBuilder設置樣式——圖片
     */
    private void mode8() {
        SpannableStringBuilder spannableString = new SpannableStringBuilder();
        spannableString.append("暗影IV已經開始暴走了");
        ImageSpan imageSpan = new ImageSpan(this, R.mipmap.ic_launcher);
        //也能夠這樣
        //Drawable drawable = getResources().getDrawable(R.mipmap.ic_launcher);
        //drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
        //ImageSpan imageSpan1 = new ImageSpan(drawable);
        //將index爲六、7的字符用圖片替代
        spannableString.setSpan(imageSpan, 6, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        ((TextView)findViewById(R.id.mode8)).setText(spannableString);
    }

    使用ImageSpan設置圖片,將index爲六、7的字符替換成了圖片,也就是說,該圖片佔有index6和7的位置。
    點擊事件
    插入圖片就已經很變態了,竟然還支持點擊事件。

    /**
     * 使用SpannableStringBuilder設置點擊事件
     */
    private void mode9() {
        SpannableStringBuilder spannableString = new SpannableStringBuilder();
        spannableString.append("暗影IV已經開始暴走了");
        ClickableSpan clickableSpan = new ClickableSpan() {
            @Override
            public void onClick(View view) {
                Toast.makeText(MainActivity.this, "請不要點我", Toast.LENGTH_SHORT).show();
            }
        };
        spannableString.setSpan(clickableSpan, 5, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        TextView textView = (TextView)findViewById(R.id.mode9);
        textView.setText(spannableString);
        textView.setMovementMethod(LinkMovementMethod.getInstance());
    }

    使用ClickableSpan設置點擊事件,最後還須要加上textView.setMovementMethod(LinkMovementMethod.getInstance());。代碼中指定index爲五、六、7的字符都成了可點擊的文本,其餘區域仍是不可點擊的。
    效果:

    點擊事件

        有同窗反映設置部分點擊事件後,還須要給真整個TextView單獨設置點擊事件時會出問題。想知道什麼問題?本身去試試看,哈哈哈~~
        這邊有一個我在CSDN上看到的解決方法,能夠從另外一個角度來解決這個問題。——解決方案

    組合使用


    /**
     * 使用SpannableStringBuilder事件組合使用
     */
    private void mode10() {
        SpannableStringBuilder spannableString = new SpannableStringBuilder();
        spannableString.append("暗影IV已經開始暴走了");
        //圖片
        ImageSpan imageSpan = new ImageSpan(this, R.mipmap.ic_launcher);
        spannableString.setSpan(imageSpan, 2, 4, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        //點擊事件
        ClickableSpan clickableSpan = new ClickableSpan() {
            @Override
            public void onClick(View view) {
                Toast.makeText(MainActivity.this, "請不要點我", Toast.LENGTH_SHORT).show();
            }
        };
        spannableString.setSpan(clickableSpan, 2, 4, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        //文字顏色
        ForegroundColorSpan colorSpan = new ForegroundColorSpan(Color.parseColor("#FFFFFF"));
        spannableString.setSpan(colorSpan,5, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        //文字背景顏色
        BackgroundColorSpan bgColorSpan = new BackgroundColorSpan(Color.parseColor("#009ad6"));
        spannableString.setSpan(bgColorSpan, 5, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
        TextView textView = (TextView)findViewById(R.id.mode10);
        textView.setText(spannableString);
        textView.setMovementMethod(LinkMovementMethod.getInstance());
    }

    例子中將ImageSpan、 ClickableSpan、 ForegroundColorSpan、BackgroundColorSpan 進行了組合使用,你們能夠根據本身的需求,來隨意搭配。複製代碼
相關文章
相關標籤/搜索