use of android.text.style.QuoteSpan in project android_frameworks_base by AOSPA.
the class HtmlToSpannedConverter method withinDiv.
private static void withinDiv(StringBuilder out, Spanned text, int start, int end, int option) {
int next;
for (int i = start; i < end; i = next) {
next = text.nextSpanTransition(i, end, QuoteSpan.class);
QuoteSpan[] quotes = text.getSpans(i, next, QuoteSpan.class);
for (QuoteSpan quote : quotes) {
out.append("<blockquote>");
}
withinBlockquote(out, text, i, next, option);
for (QuoteSpan quote : quotes) {
out.append("</blockquote>\n");
}
}
}
use of android.text.style.QuoteSpan in project android_frameworks_base by ResurrectionRemix.
the class HtmlToSpannedConverter method endBlockquote.
private static void endBlockquote(Editable text) {
endBlockElement(text);
end(text, Blockquote.class, new QuoteSpan());
}
use of android.text.style.QuoteSpan in project android_frameworks_base by crdroidandroid.
the class HtmlToSpannedConverter method endBlockquote.
private static void endBlockquote(Editable text) {
endBlockElement(text);
end(text, Blockquote.class, new QuoteSpan());
}
use of android.text.style.QuoteSpan in project platform_frameworks_base by android.
the class HtmlToSpannedConverter method endBlockquote.
private static void endBlockquote(Editable text) {
endBlockElement(text);
end(text, Blockquote.class, new QuoteSpan());
}
use of android.text.style.QuoteSpan in project android_frameworks_base by AOSPA.
the class HtmlToSpannedConverter method endBlockquote.
private static void endBlockquote(Editable text) {
endBlockElement(text);
end(text, Blockquote.class, new QuoteSpan());
}
Aggregations