Android---13---SpannableString
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()); } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。