码迷,mamicode.com
首页 > 移动开发 > 详细

Android---13---SpannableString

时间:2015-04-15 14:52:44      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:spannablestring   android开发   android   

SpannableString的属性:

1、BackgroundColorSpan 背景色 
 2、ClickableSpan 文本可点击,有点击事件
 3、ForegroundColorSpan 文本颜色(前景色)
 4、MaskFilterSpan 修饰效果,如模糊(BlurMaskFilter)、浮雕(EmbossMaskFilter)
 5、MetricAffectingSpan 父类,一般不用
 6、RasterizerSpan 光栅效果
 7、StrikethroughSpan 删除线(中划线)
 8、SuggestionSpan 相当于占位符
 9、UnderlineSpan 下划线
 10、AbsoluteSizeSpan 绝对大小(文本字体)
 11、DynamicDrawableSpan 设置图片,基于文本基线或底部对齐。
 12、ImageSpan 图片
 13、RelativeSizeSpan 相对大小(文本字体)
 14、ReplacementSpan 父类,一般不用
 15、ScaleXSpan 基于x轴缩放
 16、StyleSpan 字体样式:粗体、斜体等
 17、SubscriptSpan 下标(数学公式会用到)
 18、SuperscriptSpan 上标(数学公式会用到)
 19、TextAppearanceSpan 文本外貌(包括字体、大小、样式和颜色)
 20、TypefaceSpan 文本字体
 21、URLSpan 文本超链接



import android.app.Activity;
import android.content.Intent;
import android.graphics.Color;
import android.os.Bundle;
import android.text.SpannableString;
import android.text.Spanned;
import android.text.method.LinkMovementMethod;
import android.text.style.BackgroundColorSpan;
import android.text.style.ClickableSpan;
import android.text.style.ForegroundColorSpan;
import android.text.style.StrikethroughSpan;
import android.text.style.StyleSpan;
import android.text.style.TypefaceSpan;
import android.text.style.URLSpan;
import android.text.style.UnderlineSpan;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;

/*
 1、BackgroundColorSpan 背景色 
 2、ClickableSpan 文本可点击,有点击事件
 3、ForegroundColorSpan 文本颜色(前景色)
 4、MaskFilterSpan 修饰效果,如模糊(BlurMaskFilter)、浮雕(EmbossMaskFilter)
 5、MetricAffectingSpan 父类,一般不用
 6、RasterizerSpan 光栅效果
 7、StrikethroughSpan 删除线(中划线)
 8、SuggestionSpan 相当于占位符
 9、UnderlineSpan 下划线
 10、AbsoluteSizeSpan 绝对大小(文本字体)
 11、DynamicDrawableSpan 设置图片,基于文本基线或底部对齐。
 12、ImageSpan 图片
 13、RelativeSizeSpan 相对大小(文本字体)
 14、ReplacementSpan 父类,一般不用
 15、ScaleXSpan 基于x轴缩放
 16、StyleSpan 字体样式:粗体、斜体等
 17、SubscriptSpan 下标(数学公式会用到)
 18、SuperscriptSpan 上标(数学公式会用到)
 19、TextAppearanceSpan 文本外貌(包括字体、大小、样式和颜色)
 20、TypefaceSpan 文本字体
 21、URLSpan 文本超链接
 */
public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		TextView textView1, textView2, textView3;
		textView1 = (TextView) findViewById(R.id.textview1);
		textView2 = (TextView) findViewById(R.id.textview2);
		textView3 = (TextView) findViewById(R.id.textview3);

		String text1, text2, text3;
		SpannableString spannableString1, spannableString2, spannableString3;

		text1 = "背景颜色,字体颜色";
		text2 = "百度链接,字体样式";
		text3 = "删除线 ,下划线 ,点击事件";

		spannableString1 = new SpannableString(text1);
		spannableString2 = new SpannableString(text2);
		spannableString3 = new SpannableString(text3);

		spannableString1.setSpan(new BackgroundColorSpan(Color.YELLOW), 0, 5,
				Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
		spannableString1.setSpan(new ForegroundColorSpan(Color.RED), 5, 9,
				Spanned.SPAN_EXCLUSIVE_INCLUSIVE);

		spannableString2.setSpan(new URLSpan("http://www.baidu.com"), 0, 4,
				Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
		spannableString2.setSpan(new StyleSpan(
				android.graphics.Typeface.BOLD_ITALIC), 5, 9,
				Spanned.SPAN_EXCLUSIVE_INCLUSIVE);

		spannableString3.setSpan(new StrikethroughSpan(), 0, 3,
				Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
		spannableString3.setSpan(new UnderlineSpan(), 5, 8,
				Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
		spannableString3.setSpan(new ClickableSpan() {

			@Override
			public void onClick(View widget) {
				// TODO Auto-generated method stub
				Intent intent = new Intent (MainActivity.this,activity1.class);
				startActivity(intent);
			}
		}, 9, 14, Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
		
		
		textView1.setText(spannableString1);
		textView2.setText(spannableString2);
		textView3.setText(spannableString3);
		
		textView1.setMovementMethod(LinkMovementMethod.getInstance());
		textView2.setMovementMethod(LinkMovementMethod.getInstance());
		textView3.setMovementMethod(LinkMovementMethod.getInstance());
	}
}


Android---13---SpannableString

标签:spannablestring   android开发   android   

原文地址:http://blog.csdn.net/u013476556/article/details/45059201

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!