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

/frameworks/base/core/java/android/content/
H A DClipData.java208 public Item(CharSequence text, String htmlText) { argument
210 mHtmlText = htmlText;
252 public Item(CharSequence text, String htmlText, Intent intent, Uri uri) { argument
253 if (htmlText != null && text == null) {
258 mHtmlText = htmlText;
392 String htmlText = getHtmlText();
393 if (htmlText != null) {
395 CharSequence newText = Html.fromHtml(htmlText);
439 String htmlText = getHtmlText();
440 if (htmlText !
682 newHtmlText(CharSequence label, CharSequence text, String htmlText) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java442 * @param htmlText A string containing HTML markup as a richer version of the text
447 public IntentBuilder setHtmlText(String htmlText) { argument
448 mIntent.putExtra(IntentCompat.EXTRA_HTML_TEXT, htmlText);
451 setText(Html.fromHtml(htmlText));

Completed in 1529 milliseconds