Android examples for java.lang:String HTML
Strip off HTML tags from the target HTML string
import android.text.Html; public class Main{ /**/*from w ww. j a va 2 s.c om*/ * Strip off HTML tags from the target HTML string * * @param html * @return boolean */ public static String stripHtml(String html) { return Html.fromHtml(html).toString(); } }