package cgeo.geocaching.utils; import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.tuple.Pair; import android.text.Html; import android.text.Spanned; import android.text.style.ImageSpan; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; public final class HtmlUtils { private HtmlUtils() { // utility class } /** * Extract the text from a HTML based string. This is similar to what HTML.fromHtml(...) does, but this method also * removes the embedded images instead of replacing them by a small rectangular representation character. * * @param html * @return */ public static String extractText(final CharSequence html) { if (StringUtils.isBlank(html)) { return StringUtils.EMPTY; } String result = html.toString(); // recognize images in textview HTML contents if (html instanceof Spanned) { final Spanned text = (Spanned) html; final Object[] styles = text.getSpans(0, text.length(), Object.class); final ArrayList> removals = new ArrayList<>(); for (final Object style : styles) { if (style instanceof ImageSpan) { final int start = text.getSpanStart(style); final int end = text.getSpanEnd(style); removals.add(Pair.of(start, end)); } } // sort reversed and delete image spans Collections.sort(removals, new Comparator>() { @Override public int compare(final Pair lhs, final Pair rhs) { return rhs.getRight().compareTo(lhs.getRight()); } }); result = text.toString(); for (final Pair removal : removals) { result = result.substring(0, removal.getLeft()) + result.substring(removal.getRight()); } } // now that images are gone, do a normal html to text conversion return Html.fromHtml(result).toString().trim(); } public static String removeExtraParagraph(final String html) { if (StringUtils.startsWith(html, "

") && StringUtils.endsWith(html, "

")) { final String paragraph = StringUtils.substring(html, "

".length(), html.length() - "

".length()).trim(); if (extractText(paragraph).equals(paragraph)) { return paragraph; } } return html; } }