Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/
DClipData.java207 public Item(CharSequence text, String htmlText) { in Item() argument
209 mHtmlText = htmlText; in Item()
251 public Item(CharSequence text, String htmlText, Intent intent, Uri uri) { in Item() argument
252 if (htmlText != null && text == null) { in Item()
257 mHtmlText = htmlText; in Item()
391 String htmlText = getHtmlText(); in coerceToStyledText() local
392 if (htmlText != null) { in coerceToStyledText()
394 CharSequence newText = Html.fromHtml(htmlText); in coerceToStyledText()
438 String htmlText = getHtmlText(); in coerceToHtmlText() local
439 if (htmlText != null) { in coerceToHtmlText()
[all …]
DIntent.java7054 final String htmlText = getStringExtra(EXTRA_HTML_TEXT); in migrateExtraStreamToClipData() local
7055 if (stream != null || text != null || htmlText != null) { in migrateExtraStreamToClipData()
7058 new ClipData.Item(text, htmlText, null, stream)); in migrateExtraStreamToClipData()
7113 String htmlText = htmlTexts != null ? htmlTexts.get(which) : null; in makeClipItem() local
7114 return new ClipData.Item(text, htmlText, null, uri); in makeClipItem()
/frameworks/support/v4/java/android/support/v4/app/
DShareCompat.java446 public IntentBuilder setHtmlText(String htmlText) { in setHtmlText() argument
447 mIntent.putExtra(IntentCompat.EXTRA_HTML_TEXT, htmlText); in setHtmlText()
450 setText(Html.fromHtml(htmlText)); in setHtmlText()