Android之修改部分字体颜色

#01# 方法一:

            TextView textView = (TextView) view.findViewById(R.id.text);
            
            SpannableString ss = new SpannableString("北京欢迎你,荣昌挺好的");
            ss.setSpan(new ForegroundColorSpan(Color.RED), 0, 7, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
            ss.setSpan(new ForegroundColorSpan(Color.GREEN), 7, 10, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
            textView.setText(ss);

#02# 方法二:

textView.setText(Html.fromHtml("<font size=\"3\" color=\"red\">北京欢迎你,荣昌挺好的</font><font size=\"3\" color=\"green\">,挺好的</font>"));

 

上一篇:带你读《存储漫谈Ceph原理与实践》第三章接入层3.3.文件存储 CephFS(三)


下一篇:【技术贴】myeclipse6.5配置svn 1.8最新版详细教程带图片