Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/
DClipData.java223 public Item(CharSequence text, String htmlText) { in Item() argument
225 mHtmlText = htmlText; in Item()
267 public Item(CharSequence text, String htmlText, Intent intent, Uri uri) { in Item() argument
268 if (htmlText != null && text == null) { in Item()
273 mHtmlText = htmlText; in Item()
416 String htmlText = getHtmlText(); in coerceToStyledText() local
417 if (htmlText != null) { in coerceToStyledText()
419 CharSequence newText = Html.fromHtml(htmlText); in coerceToStyledText()
463 String htmlText = getHtmlText(); in coerceToHtmlText() local
464 if (htmlText != null) { in coerceToHtmlText()
[all …]
DIntent.java9889 final String htmlText = getStringExtra(EXTRA_HTML_TEXT); in migrateExtraStreamToClipData() local
9890 if (stream != null || text != null || htmlText != null) { in migrateExtraStreamToClipData()
9893 new ClipData.Item(text, htmlText, null, stream)); in migrateExtraStreamToClipData()
9962 String htmlText = htmlTexts != null ? htmlTexts.get(which) : null; in makeClipItem() local
9963 return new ClipData.Item(text, htmlText, null, uri); in makeClipItem()
/frameworks/support/compat/java/android/support/v4/app/
DShareCompat.java381 public IntentBuilder setHtmlText(String htmlText) { in setHtmlText() argument
382 mIntent.putExtra(IntentCompat.EXTRA_HTML_TEXT, htmlText); in setHtmlText()
385 setText(Html.fromHtml(htmlText)); in setHtmlText()