Searched refs:htmlText (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/content/
H A DClipData.java206 public Item(CharSequence text, String htmlText) { argument
208 mHtmlText = htmlText;
250 public Item(CharSequence text, String htmlText, Intent intent, Uri uri) { argument
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 !
680 newHtmlText(CharSequence label, CharSequence text, String htmlText) argument
[all...]
H A DIntent.java6857 final String htmlText = getStringExtra(EXTRA_HTML_TEXT);
6858 if (stream != null || text != null || htmlText != null) {
6861 new ClipData.Item(text, htmlText, null, stream));
6916 String htmlText = htmlTexts != null ? htmlTexts.get(which) : null;
6917 return new ClipData.Item(text, htmlText, null, uri);
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java441 * @param htmlText A string containing HTML markup as a richer version of the text
446 public IntentBuilder setHtmlText(String htmlText) { argument
447 mIntent.putExtra(IntentCompat.EXTRA_HTML_TEXT, htmlText);
450 setText(Html.fromHtml(htmlText));

Completed in 82 milliseconds