public void setSpan(Object what, int start, int end, int flags) { } 这个方法里的第一个参数,也就是一些span的对象,不能重复使用.如下 ForegroundColorSpan fcs = new ForegroundColorSpan(color); ss.setSpan(fcs, 0, 3, Spannable.SPAN_EXCLUSIVE_INCLUSIVE); ss.setSpan(fcs, 4, 6, Spannabl…