Spannable style = new SpannableStringBuilder(commentsHtml);
try {
style.setSpan(new ForegroundColorSpan(Color.BLUE),startIndex,endIndex,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
}catch (Exception e){
e.printStackTrace();
}finally {
holder.comentsConTV.setText(style);
}
时间: 2024-11-08 09:48:14