Android spannableStringBuilder用法整理

spannableStringBuilder 用法詳解:android

 SpannableString ss = new SpannableString("紅色打電話斜體刪除線綠色下劃線圖片:."); 
         //用顏色標記文本
         ss.setSpan(new ForegroundColorSpan(Color.RED), 0, 2, 
                 //setSpan時須要指定的 flag,Spanned.SPAN_EXCLUSIVE_EXCLUSIVE(先後都不包括).
                 Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
         //用超連接標記文本
         ss.setSpan(new URLSpan("tel:4155551212"), 2, 5, 
                 Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
         //用樣式標記文本(斜體)
         ss.setSpan(new StyleSpan(Typeface.BOLD_ITALIC), 5, 7, 
                 Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
         //用刪除線標記文本
         ss.setSpan(new StrikethroughSpan(), 7, 10, 
                 Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
         //用下劃線標記文本
         ss.setSpan(new UnderlineSpan(), 10, 16, 
                 Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
         //用顏色標記
         ss.setSpan(new ForegroundColorSpan(Color.GREEN), 10, 13, 
                 Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
         //獲取Drawable資源
         Drawable d = getResources().getDrawable(R.drawable.icon); 
         d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
         //建立ImageSpan
         ImageSpan span = new ImageSpan(d, ImageSpan.ALIGN_BASELINE);
         //用ImageSpan替換文本
         ss.setSpan(span, 18, 19, Spannable.SPAN_INCLUSIVE_EXCLUSIVE); 
         txtInfo.setText(ss);
         txtInfo.setMovementMethod(LinkMovementMethod.getInstance()); //實現文本的滾動  字體

一般用於顯示文字,但有時候也須要在文字中夾雜一些圖片,好比QQ中就能夠使用表情圖片,又好比須要的文字高亮顯示等等,如何在android中也作到這樣呢?
記得android中有個android.text包,這裏提供了對文本的強大的處理功能。
添加圖片主要用SpannableString和ImageSpan類:
 
     Drawable drawable = getResources().getDrawable(id); 
        drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight()); 
        //須要處理的文本,[smile]是須要被替代的文本 
        SpannableString spannable = new SpannableString(getText().toString()+"[smile]"); 
        //要讓圖片替代指定的文字就要用ImageSpan 
        ImageSpan span = new ImageSpan(drawable, ImageSpan.ALIGN_BASELINE); 
        //開始替換,注意第2和第3個參數表示從哪裏開始替換到哪裏替換結束(start和end) 
       //最後一個參數相似數學中的集合,[5,12)表示從5到12,包括5但不包括12 
        spannable.setSpan(span, getText().length(),getText().length()+"[smile]".length(), Spannable.SPAN_INCLUSIVE_EXCLUSIVE);   
        setText(spannable); 
 
將須要的文字高亮顯示:
 
 
 
public void highlight(int start,int end){ 
        SpannableStringBuilder spannable=new SpannableStringBuilder(getText().toString());//用於可變字符串 
        ForegroundColorSpan span=new ForegroundColorSpan(Color.RED); 
        spannable.setSpan(span, start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
        setText(spannable); 
    } 
  
加下劃線:
 
 
 
public void underline(int start,int end){ 
        SpannableStringBuilder spannable=new SpannableStringBuilder(getText().toString()); 
        CharacterStyle span=new UnderlineSpan(); 
        spannable.setSpan(span, start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
        setText(spannable); 
    } 
  
組合運用:
 
 
 
SpannableStringBuilder spannable=new SpannableStringBuilder(getText().toString()); 
        CharacterStyle span_1=new StyleSpan(android.graphics.Typeface.ITALIC); 
        CharacterStyle span_2=new ForegroundColorSpan(Color.RED); 
        spannable.setSpan(span_1, start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
        spannable.setSpan(span_2, start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
        setText(spannable); 
  
案例:帶有\n換行符的字符串均可以用此方法顯示2種顏色
 
 
 
    /**
     * 帶有\n換行符的字符串均可以用此方法顯示2種顏色
     * @param text
     * @param color1
     * @param color2
     * @return
     */ 
    public SpannableStringBuilder highlight(String text,int color1,int color2,int fontSize){ 
        SpannableStringBuilder spannable=new SpannableStringBuilder(text);//用於可變字符串 
        CharacterStyle span_0=null,span_1=null,span_2; 
        int end=text.indexOf("\n"); 
        if(end==-1){//若是沒有換行符就使用第一種顏色顯示 
            span_0=new ForegroundColorSpan(color1); 
            spannable.setSpan(span_0, 0, text.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
        }else{ 
            span_0=new ForegroundColorSpan(color1); 
            span_1=new ForegroundColorSpan(color2); 
            spannable.setSpan(span_0, 0, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
            spannable.setSpan(span_1, end+1, text.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
             
            span_2=new AbsoluteSizeSpan(fontSize);//字體大小 
            spannable.setSpan(span_2, end+1, text.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
        } 
        return spannable; 
    }ui

相關文章
相關標籤/搜索