android–設定TextView部分文字的顏色和背景(高亮顯示)

來源:互聯網
上載者:User
設定部分文字背景高亮顯示: Java代碼  
  1. public class HighLightActivity extends Activity {   
  2.     String strs="我的心太亂了,給我點空白。";   
  3.     TextView textview;   
  4.     int start =3;   
  5.     int end = 5;   
  6.     /** Called when the activity is first created. */  
  7.     @Override  
  8.     public void onCreate(Bundle savedInstanceState) {   
  9.         super.onCreate(savedInstanceState);   
  10.         setContentView(R.layout.high_light);   
  11.         textview=(TextView)findViewById(R.id.textview);   
  12.         SpannableStringBuilder style=new SpannableStringBuilder(strs);   
  13.         style.setSpan(new BackgroundColorSpan(Color.RED),start,end,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);   
  14.         textview.setText(style);   
  15.            
  16.     }   
  17.   
  18. }  
public class HighLightActivity extends Activity {String strs="我的心太亂了,給我點空白。";TextView textview;int start =3;int end = 5;    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.high_light);        textview=(TextView)findViewById(R.id.textview);        SpannableStringBuilder style=new SpannableStringBuilder(strs);        style.setSpan(new BackgroundColorSpan(Color.RED),start,end,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);        textview.setText(style);            }}

顯示效果:

同時設定文字和背景高亮顯示: Java代碼  

  1. package com.justel.contact;   
  2.   
  3. import android.app.Activity;   
  4. import android.graphics.Color;   
  5. import android.os.Bundle;   
  6. import android.text.Spannable;   
  7. import android.text.SpannableStringBuilder;   
  8. import android.text.style.BackgroundColorSpan;   
  9. import android.text.style.ForegroundColorSpan;   
  10. import android.widget.TextView;   
  11.   
  12. public class HighLightActivity extends Activity {   
  13.     String strs="我的心太亂了,給我點空白。";   
  14.     TextView textview;   
  15.     int start =3;   
  16.     int end = 5;   
  17.     /** Called when the activity is first created. */  
  18.     @Override  
  19.     public void onCreate(Bundle savedInstanceState) {   
  20.         super.onCreate(savedInstanceState);   
  21.         setContentView(R.layout.high_light);   
  22.         textview=(TextView)findViewById(R.id.textview);   
  23.         SpannableStringBuilder style=new SpannableStringBuilder(strs);   
  24.         style.setSpan(new BackgroundColorSpan(Color.RED),start,end,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);   
  25.         style.setSpan(new ForegroundColorSpan(Color.RED),7,9,Spannable.SPAN_EXCLUSIVE_INCLUSIVE);   
  26.         textview.setText(style);   
  27.            
  28.     }   
  29.   
  30. }  
package com.justel.contact;import android.app.Activity;import android.graphics.Color;import android.os.Bundle;import android.text.Spannable;import android.text.SpannableStringBuilder;import android.text.style.BackgroundColorSpan;import android.text.style.ForegroundColorSpan;import android.widget.TextView;public class HighLightActivity extends Activity {String strs="我的心太亂了,給我點空白。";TextView textview;int start =3;int end = 5;    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.high_light);        textview=(TextView)findViewById(R.id.textview);        SpannableStringBuilder style=new SpannableStringBuilder(strs);        style.setSpan(new BackgroundColorSpan(Color.RED),start,end,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);        style.setSpan(new ForegroundColorSpan(Color.RED),7,9,Spannable.SPAN_EXCLUSIVE_INCLUSIVE);        textview.setText(style);            }}

顯示效果:

參數說明:
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE
API裡面解釋:Spans of type SPAN_EXCLUSIVE_EXCLUSIVE do not expand to include text inserted at either their starting or ending point. They can never have a length of 0 and are automatically removed from the buffer if all the text they cover is removed.
即在原文本頭或尾追加新文本的樣式不受原文本樣式影響,原文本高亮,新追加文本不高亮。

Spannable.SPAN_EXCLUSIVE_INCLUSIVE
API裡面解釋:Non-0-length spans of type SPAN_INCLUSIVE_EXCLUSIVE expand to include text inserted at their ending point but not at their starting point. When 0-length, they behave like points.
即在原文本尾追加新文本的樣式受原文本樣式影響,原來文本尾高亮,新追加文本也高亮。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.