spanSpans for Spanned String返回乱序?

时间:2014-08-02 17:39:57

标签: android html string arraylist spanned

我使用以下代码筛选一个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”。它应该是:“形容词,名词,动词”

有关为何会发生这种情况的任何见解?

1 个答案:

答案 0 :(得分:3)

使用int nextSpanTransition(int start, int limit, Class kind)迭代您的跨度。这样你就可以获得阅读顺序。