【Android】強力なSpannablesStringBuilder

3780 ワード

前言
大牛を通してネットに浸かる日
の文章はSpannablesStringBuilderの使い方を学び、SpannablesStringBuilderでtextViewのテキストスタイルをカスタマイズすることで、以前はこのようなニーズがあったときにバカに文字をいくつかのtextViewに分けて表示したりhtmlで制御したりしていました.今SpannablesStringBuilderで解決するのはperfectすぎる.
主な方法
SpannablesStringBuilderとSpannablesStringは、主にsetSpan(Object what,int start,int end,int flags)を使用してテキストスタイルを変更します.対応するパラメータ:
start:Spanの開始位置を指定するend:Spanの終了位置を指定します.この位置は含まれません.
flags:値は次の4つです.
Spannable.SPAN_EXCLUSIVE_INCLUSIVE:Spanの前に入力した文字にSpanの効果は適用されず、後に入力した文字にSpanの効果が適用されます.
Spannable.SPAN_INCLUSIVE_EXCLUSIVE:Spanの前に入力した文字にSpanの効果を適用し、後に入力した文字にSpanの効果を適用しません.
Spannable.SPAN_INCUJSIVE_INCLUSIVE:Spanの前後に入力した文字にSpanの効果を適用します.
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE:前後とも含まれません.

what:対応する様々なSpan、異なるSpanは異なるスタイルに対応します.既知のクラスは次のとおりです.
BackgroundColorSpan:テキスト背景色ForegroundColorSpan:テキスト色MaskFilterSpan:ブラー(BlurMaskFilter)レリーフなどの修飾効果
RasterizerSpan:ラスタ効果StrikethroughSpan:削除線SuggestionSpan:プレースホルダに相当
UnderlineSpan:下線AbsoluteSizeSpan:テキストフォント(絶対サイズ)DynamicDrawableSpan:テキストベースラインまたは下部に基づいて画像を配置します.
ImageSpan:画像RelativeSizeSpan:相対サイズ(テキストフォント)ScaleXSpan:x軸ベースのスケーリングStyleSpan:フォントスタイル:太字、斜体などSubscriptSpan:下付き(数式で使用)SuperscriptSpan:上付き(数式で使用)TextAppearanceSpan:フォント、サイズ、スタイル、色を含むテキストの外観TypefaceSpan:テキストフォントURLSpan:テキストハイパーリンクClickableSpan:クリックイベント
コードの例
SpannableString
/**
 *   SpannableString    ——    
 */
SpannableString spannableString = new SpannableString("hello world");
ForegroundColorSpan colorSpan = new ForegroundColorSpan(Color.parseColor("#009ad6"));
spannableString.setSpan(colorSpan, 0, 5, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);//  'hello'     
((TextView)findViewById(R.id.textView)).setText(spannableString);

SpannableStringBuilder
SpannableStringBuilder ssb=new SpannableStringBuilder();
ssb.append("hello world");
/**
 *     ——    
 */
ForegroundColorSpan colorSpan = new ForegroundColorSpan(Color.parseColor("#009ad6"));
ssb.setSpan(colorSpan, 0, 3, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);//  'hel'  
//      
BackgroundColorSpan bgColorSpan = new BackgroundColorSpan(Color.parseColor("#009ad6"));
ssb.setSpan(bgColorSpan, 3, 6, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);//'lo '    
//      
AbsoluteSizeSpan absoluteSizeSpan = new AbsoluteSizeSpan(20);
ssb.setSpan(absoluteSizeSpan, 0, 3, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
/**
 *     ——    
 * Typeface. BOLD   \ITALIC   \BOLD_ITALIC    
 */
StyleSpan styleSpan=new StyleSpan(Typeface.BOLD);
ssb.setSpan(styleSpan, 0, 3, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);//'hel'     
//   -   
StrikethroughSpan strikethroughSpan = new StrikethroughSpan();
ssb.setSpan(strikethroughSpan, 0, 5, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
//   
UnderlineSpan underlineSpan = new UnderlineSpan();
ssb.setSpan(underlineSpan, 6, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);

/**
 *     
 */
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 6、7        
ssb.setSpan(imageSpan, 6, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);

/**
 *     
 */
ClickableSpan clickableSpan = new ClickableSpan() {
    @Override
    public void onClick(View view) {
        Toast.makeText(MainActivity.this, "hello", Toast.LENGTH_SHORT).show();
    }
};
ssb.setSpan(clickableSpan, 5, 8, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);

TextView textView = (TextView)findViewById(R.id.textView);
textView.setText(ssb);
textView.setMovementMethod(LinkMovementMethod.getInstance());//         ,