50个Android开发技巧(10 为TextView加入样式)
(原文地址:http://blog.csdn.net/vector_yi/article/details/24428085)
<string name= "text1" ><![CDATA[ Visit <a href=\"http://blog.csdn.net/vector_yi\">Vector_Yi\‘s Blog</a> ]]></string>
final TextView textView1 = (TextView ) findViewById( R. id. my_text_view_html); textView1 .setText (Html . fromHtml( getString( R. string. text1))); textView1 .setMovementMethod (LinkMovementMethod . getInstance());
<string name= "text2" >Hello World, HomeActivity!</string>
final Spannable text2 = new SpannableString( getString (R .string .text2 )); text2 .setSpan ( new BackgroundColorSpan( Color. RED), 1 , 4, 0 );//从index为1起,到index为4止,设置背景色为RED text2 .setSpan ( new ForegroundColorSpan( Color. BLUE), 6 , 9, 0 );
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。