Searched defs:htmlText (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/content/
H A DClipData.java207 public Item(CharSequence text, String htmlText) { argument
209 mHtmlText = htmlText;
251 public Item(CharSequence text, String htmlText, Intent intent, Uri uri) { argument
252 if (htmlText != null && text == null) {
257 mHtmlText = htmlText;
391 String htmlText = getHtmlText();
392 if (htmlText != null) {
394 CharSequence newText = Html.fromHtml(htmlText);
438 String htmlText = getHtmlText();
439 if (htmlText !
681 newHtmlText(CharSequence label, CharSequence text, String htmlText) argument
[all...]
/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 87 milliseconds