TextView中的文本加效果,如设置不同颜色,大小或点击事件

方法一

利用HTML语言,改变文字颜色

例1:

 String str = "中软" + "国际";  
  TextView tv = new TextView(this);  
  tv.setText(Html.fromHtml(str)); 

例2:

text2: This is some other   
      text, with a link specified via an  tag.  Use a \"tel:\" URL   
      to dial a phone number   


方法二

通过定义不同的style来设置TextView的颜色和大小

例1:

   
  
  

SpannableString styledText = new SpannableString("大家好才是真的好");  
styledText.setSpan(new TextAppearanceSpan(this, R.style.style0), 0, 3, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  
styledText.setSpan(new TextAppearanceSpan(this, R.style.style1), 3, 5, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  
          
mTextView.setText(styledText, TextView.BufferType.SPANNABLE);


方法三

例1:

自动识别链接
在TextView中添加如下属性

     


     


     


     


方法四

例1:

通过setSpan来设置加粗或超链接

SpannableString ss = new SpannableString("text4: Click here to dial the phone.");   
ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 6,Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);   
ss.setSpan(new URLSpan("tel:4155551212"), 13, 17,Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);   
  
TextView t4 = (TextView) findViewById(R.id.text4);   
t4.setText(ss);   
t4.setMovementMethod(LinkMovementMethod.getInstance());


setMovementMethod

Spanned.SPAN_EXCLUSIVE_EXCLUSIVE(前后都不包括)

Spanned.SPAN_INCLUSIVE_EXCLUSIVE(前面包括,后面不包括)

Spanned.SPAN_EXCLUSIVE_INCLUSIVE(前面不包括,后面包括)

Spanned.SPAN_INCLUSIVE_INCLUSIVE(前后都包括)



方法五

例1:

有时我们需要再一个TextView空间内设置不同颜色的文字,并使得该部分的文字有着单独的点击事件,那就要用到ClickableSpan了

自定义一个继承ClickableSpan的类,在里面可以设置需要设置的字体颜色,以及是否需要下划线,并处理此部分文字的点击事件

public class TextViewSpan extends ClickableSpan{
		private Context mContext;

		
		public TextViewSpan(String ss,Context context) {
			this.mContext=context;
			
		}

		
		@Override
		public void updateDrawState(TextPaint ds) {
		        ds.setColor(mContext.getResources().getColor(R.color.event_reg_color_1));
			ds.setUnderlineText(false); // 去掉下划线
		}

		@Override
		public void onClick(View widget) {
                //处理自己的点击事件
			
		}

}


在Activity里实现代码如下:

TextView textView = (TextView) findViewById(R.id.textView);
    String ttt = "嘻嘻嘻";
    String sss = "哈哈哈";
    SpannableString spanttt = new SpannableString(ttt);
    SpannableString spansss = new SpannableString(sss);
    ClickableSpan clickttt = new TextViewSpan(ttt, this);
    ClickableSpan clicksss = new TextViewSpan(ttt, this);
    spanttt.setSpan(clickttt, 0, ttt.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
    spansss.setSpan(clicksss, 0, sss.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
    textView.setText("恩恩");
    textView.append(spanttt);
    textView.append("呵呵");
    textView.append(spansss);
    textView.append("啦啦");
    textView.setMovementMethod(LinkMovementMethod.getInstance());










下面是列举了spannable的多种用法

demo:

public class TextViewActivity extends Activity {  
    TextView mTextView = null;     
    SpannableString msp = null;    
      
      
    @Override  
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.main);  
          
        mTextView = (TextView)findViewById(R.id.myTextView);  
          
        //创建一个 SpannableString对象    
        msp = new SpannableString("字体测试字体大小一半两倍前景色背景色正常粗体斜体粗斜体下划线删除线x1x2电话邮件网站短信彩信地图X轴综合/bot");   
          
        //设置字体(default,default-bold,monospace,serif,sans-serif)  
        msp.setSpan(new TypefaceSpan("monospace"), 0, 2, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  
        msp.setSpan(new TypefaceSpan("serif"), 2, 4, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  
          
        //设置字体大小(绝对值,单位:像素)   
        msp.setSpan(new AbsoluteSizeSpan(20), 4, 6, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  
        msp.setSpan(new AbsoluteSizeSpan(20,true), 6, 8, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  //第二个参数boolean dip,如果为true,表示前面的字体大小单位为dip,否则为像素,同上。  
          
        //设置字体大小(相对值,单位:像素) 参数表示为默认字体大小的多少倍  
        msp.setSpan(new RelativeSizeSpan(0.5f), 8, 10, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  //0.5f表示默认字体大小的一半  
        msp.setSpan(new RelativeSizeSpan(2.0f), 10, 12, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  //2.0f表示默认字体大小的两倍  
          
        //设置字体前景色  
        msp.setSpan(new ForegroundColorSpan(Color.MAGENTA), 12, 15, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  //设置前景色为洋红色  
          
        //设置字体背景色  
        msp.setSpan(new BackgroundColorSpan(Color.CYAN), 15, 18, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  //设置背景色为青色  
       
        //设置字体样式正常,粗体,斜体,粗斜体  
        msp.setSpan(new StyleSpan(android.graphics.Typeface.NORMAL), 18, 20, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  //正常  
        msp.setSpan(new StyleSpan(android.graphics.Typeface.BOLD), 20, 22, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  //粗体  
        msp.setSpan(new StyleSpan(android.graphics.Typeface.ITALIC), 22, 24, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  //斜体  
        msp.setSpan(new StyleSpan(android.graphics.Typeface.BOLD_ITALIC), 24, 27, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  //粗斜体  
          
        //设置下划线  
        msp.setSpan(new UnderlineSpan(), 27, 30, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  
          
        //设置删除线  
        msp.setSpan(new StrikethroughSpan(), 30, 33, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  
          
        //设置上下标  
        msp.setSpan(new SubscriptSpan(), 34, 35, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);     //下标     
        msp.setSpan(new SuperscriptSpan(), 36, 37, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);   //上标              
          
        //超级链接(需要添加setMovementMethod方法附加响应)  
        msp.setSpan(new URLSpan("tel:4155551212"), 37, 39, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);     //电话     
        msp.setSpan(new URLSpan("mailto:[email protected]"), 39, 41, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);     //邮件     
        msp.setSpan(new URLSpan("http://www.baidu.com"), 41, 43, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);     //网络     
        msp.setSpan(new URLSpan("sms:4155551212"), 43, 45, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);     //短信   使用sms:或者smsto:  
        msp.setSpan(new URLSpan("mms:4155551212"), 45, 47, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);     //彩信   使用mms:或者mmsto:  
        msp.setSpan(new URLSpan("geo:38.899533,-77.036476"), 47, 49, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);     //地图     
          
        //设置字体大小(相对值,单位:像素) 参数表示为默认字体宽度的多少倍  
        msp.setSpan(new ScaleXSpan(2.0f), 49, 51, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); //2.0f表示默认字体宽度的两倍,即X轴方向放大为默认字体的两倍,而高度不变  
          
        //设置字体(依次包括字体名称,字体大小,字体样式,字体颜色,链接颜色)  
        ColorStateList csllink = null;  
        ColorStateList csl = null;  
        XmlResourceParser xppcolor=getResources().getXml (R.color.color);  
        try {  
            csl= ColorStateList.createFromXml(getResources(),xppcolor);  
        }catch(XmlPullParserException e){  
            // TODO: handle exception  
            e.printStackTrace();          
        }catch(IOException e){  
            // TODO: handle exception  
            e.printStackTrace();          
        }  
  
        XmlResourceParser xpplinkcolor=getResources().getXml(R.color.linkcolor);  
        try {  
            csllink= ColorStateList.createFromXml(getResources(),xpplinkcolor);  
        }catch(XmlPullParserException e){  
            // TODO: handle exception  
            e.printStackTrace();          
        }catch(IOException e){  
            // TODO: handle exception  
            e.printStackTrace();          
        }  
        msp.setSpan(new TextAppearanceSpan("monospace",android.graphics.Typeface.BOLD_ITALIC, 30, csl, csllink), 51, 53, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);   
         
  
        //设置图片  
        Drawable drawable = getResources().getDrawable(R.drawable.icon);   
        drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());    
        msp.setSpan(new ImageSpan(drawable), 53, 57, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);  
          
        mTextView.setText(msp);  
        mTextView.setMovementMethod(LinkMovementMethod.getInstance());   
    }  
}


你可能感兴趣的:(UI控件)