Home | History | Annotate | Download | only in content

Lines Matching refs:htmlText

206         public Item(CharSequence text, String htmlText) {
208 mHtmlText = htmlText;
250 public Item(CharSequence text, String htmlText, Intent intent, Uri uri) {
251 if (htmlText != null && text == null) {
256 mHtmlText = htmlText;
390 String htmlText = getHtmlText();
391 if (htmlText != null) {
393 CharSequence newText = Html.fromHtml(htmlText);
437 String htmlText = getHtmlText();
438 if (htmlText != null) {
439 return htmlText;
677 * @param htmlText The actual HTML text in the clip.
681 String htmlText) {
682 Item item = new Item(text, htmlText);
879 String htmlText = in.readString();
882 mItems.add(new Item(text, htmlText, intent, uri));