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

/frameworks/base/core/java/android/content/
H A DClipData.java218 public Item(CharSequence text, String htmlText) { argument
220 mHtmlText = htmlText;
262 public Item(CharSequence text, String htmlText, Intent intent, Uri uri) { argument
263 if (htmlText != null && text == null) {
268 mHtmlText = htmlText;
402 String htmlText = getHtmlText();
403 if (htmlText != null) {
405 CharSequence newText = Html.fromHtml(htmlText);
449 String htmlText = getHtmlText();
450 if (htmlText !
714 newHtmlText(CharSequence label, CharSequence text, String htmlText) argument
[all...]
/frameworks/support/compat/java/android/support/v4/app/
H A DShareCompat.java448 * @param htmlText A string containing HTML markup as a richer version of the text
453 public IntentBuilder setHtmlText(String htmlText) { argument
454 mIntent.putExtra(IntentCompat.EXTRA_HTML_TEXT, htmlText);
457 setText(Html.fromHtml(htmlText));

Completed in 7441 milliseconds