我使用以下代码筛选一个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”.它应该是:“形容词,名词,动词”
有关为什么会发生这种情况的任何见解?
最佳答案 使用
int nextSpanTransition(int start, int limit, Class kind)
迭代您的跨度.这样你就可以获得阅读顺序.