Searched refs:htmlText (Results 1 - 3 of 3) 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...]
H A DIntent.java7237 final String htmlText = getStringExtra(EXTRA_HTML_TEXT);
7238 if (stream != null || text != null || htmlText != null) {
7241 new ClipData.Item(text, htmlText, null, stream));
7296 String htmlText = htmlTexts != null ? htmlTexts.get(which) : null;
7297 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 64 milliseconds