HomeSort by relevance Sort by last modified time
    Searched defs:Html (Results 1 - 25 of 42) sorted by null

1 2

  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/Application/src/main/java/com/example/android/basicandroidkeystore/
MainActivity.java 22 import android.text.Html;
47 sampleOutput.setText(Html.fromHtml(getString(R.string.intro_message)));
  /developers/build/prebuilts/gradle/SynchronizedNotifications/Application/src/main/java/com/example/android/wearable/synchronizednotifications/
MainActivity.java 22 import android.text.Html;
47 sampleOutput.setText(Html.fromHtml(getString(R.string.intro_message)));
  /development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/
MainActivity.java 22 import android.text.Html;
47 sampleOutput.setText(Html.fromHtml(getString(R.string.intro_message)));
  /development/samples/browseable/SynchronizedNotifications/Application/src/com.example.android.wearable.synchronizednotifications/
MainActivity.java 22 import android.text.Html;
47 sampleOutput.setText(Html.fromHtml(getString(R.string.intro_message)));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/
InfoPanel.java 24 import android.text.Html;
134 mExifData.setText(Html.fromHtml(exifString));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadOverMeteredDialog.java 22 import android.text.Html;
61 prompt.setText(Html.fromHtml(String.format(promptFormat, language)));
  /packages/apps/Dialer/tests/src/com/android/dialer/
PhoneCallDetailsHelperTest.java 23 import android.text.Html;
117 /** Asserts that a char sequence is actually a Spanned corresponding to the expected HTML. */
119 // In order to contain HTML, the text should actually be a Spanned.
122 // Convert from and to HTML to take care of alternative formatting of HTML.
123 assertEquals(Html.toHtml(Html.fromHtml(expectedHtml)), Html.toHtml(actualSpanned));
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingDialog.java 36 import android.text.Html;
310 mTitleText.setText(Html.fromHtml(instructions));
372 mInstructionText.setText(Html.fromHtml(instructions));
  /frameworks/base/core/java/android/content/
ClipData.java 26 import android.text.Html;
63 * <a href="{@docRoot}guide/topics/clipboard/copy-paste.html">Copy and Paste</a>
204 * with an alternative HTML formatted representation. You <em>must</em>
205 * supply a plain text representation in addition to HTML text; coercion
206 * will not be done from HTML formated text into plain text.
248 * text, HTML text, Intent, and/or URI. If providing HTML text, you
250 * will not be done from HTML formated text into plain text.
255 "Plain text must be supplied if HTML text is supplied");
271 * Retrieve the raw HTML text contained in this Item
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java 30 import android.text.Html;
139 public String escapeHtml(CharSequence html) {
140 return ShareCompatJB.escapeHtml(html);
437 * Set an HTML string to be sent as part of the share.
439 * a styled version of the supplied HTML text will be added as EXTRA_TEXT as
440 * parsed by {@link android.text.Html#fromHtml(String) Html.fromHtml}.
442 * @param htmlText A string containing HTML markup as a richer version of the text
451 setText(Html.fromHtml(htmlText));
740 * Get the styled HTML text shared with the target activity
    [all...]
  /frameworks/base/core/java/android/text/
Html.java 55 * This class processes HTML strings into displayable styled text.
56 * Not all HTML tags are supported.
58 public class Html {
60 * Retrieves images for HTML &lt;img&gt; tags.
64 * This methos is called when the HTML parser encounters an
76 * Is notified when HTML tags are encountered that the parser does
81 * This method will be called whenn the HTML parser encounters
88 private Html() { }
91 * Returns displayable styled text from the provided HTML string.
92 * Any &lt;img&gt; tags in the HTML will display as a generi
    [all...]
  /packages/apps/Browser/src/com/android/browser/
SuggestionsAdapter.java 25 import android.text.Html;
165 tv1.setText(Html.fromHtml(item.title));
554 // There must be a better way to strip HTML from things.
556 // expensive than a standard html escaper.
557 return (item.title != null) ? Html.fromHtml(item.title).toString() : null;
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListItem.java 39 import android.text.Html;
542 // Converts html to spannable if ContentType is "text/html".
545 buf.append(Html.fromHtml(body));
578 // onClickListener. It allows the item to respond to embedded html links and at the
    [all...]
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 167 if ((i > 0) && (tokens.get(i - 1) instanceof Html)) {
168 ((Html)tokens.get(i - 1)).trimLeadingWhitespace();
170 if ((i + 1 < tokens.size()) && (tokens.get(i + 1) instanceof Html)) {
171 ((Html)tokens.get(i + 1)).trimTrailingWhitespace();
176 // Remove any empty html tokens.
282 addToken(new Html(text.substring(start, nextChar), buf.toString()));
657 HTML ("html"),
658 FORMAT ("format"), // subtype of HTML
668 //stringreps for HTML and FORMAT don't really matte
722 private String html; field in class:AbstractMessageParser.Html
1241 StringBuilder html = new StringBuilder(); local
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/20/
android.jar 

Completed in 3291 milliseconds

1 2