1、TextView设置文字透明效果
//android:textColor="#ff00ff00"
//在XML中使用颜色码设置文本颜色,若要设置透明度,只须设置第一、二位数字即可。颜色码的规则:透明度(2位)红色(2位)绿色(2位)蓝色(2位)
mTVText.setTextColor(Color.argb(35, 0, 255, 0));
2、TextView设置文本高亮显示
mTVText.setText("http://orgcent.com文本高亮显示代码",BufferType.EDITABLE);
Editable et = mTVText.getEditableText();
//设置前景色:new ForegroundColorSpan(Color.CYAN);
et.setSpan(new BackgroundColorSpan(Color.BLUE), 5, 8, Spannable.SPAN_INCLUSIVE_INCLUSIVE);
PS:文本高亮是设置前景色还是背景色,根据需要即可。