我使用以下代码筛选一个Spanned String,将所有粗体文本保存为数组中的字符串:
StyleSpan[] spans = storyText.getSpans(0,
storyText.length(), StyleSpan.class);
List<String> boldedWords = new ArrayList<String>();
for (StyleSpan span : spans) {
if (span.getStyle() == Typeface.BOLD) {
//start
int s = storyText
.getSpanStart(span);
//end
int e = storyText.getSpanEnd(span);
boldedWords.add(storyText.subSequence(
s, e).toString());
}
}
String[] array = boldedWords
.toArray(new String[boldedWords.size()]);
然而,我在阵列中收到的字符串是乱序的。例如:
句子可能是(CAPS代表粗体文字):
storyText = "This ADJECTIVE NOUN is VERB"
我得到的数组将是:“Noun,Verb,Adjective”。它应该是:“形容词,名词,动词”
有关为何会发生这种情况的任何见解?