HomeSort by relevance Sort by last modified time
    Searched refs:quotedText (Results 1 - 2 of 2) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
QuotedTextView.java 173 * tapped by the user. Also updates the visibility of the QuotedText area.
244 StringBuilder quotedText = new StringBuilder();
249 quotedText.append(sQuoteBegin);
250 quotedText
256 quotedText.append(HEADER_SEPARATOR);
257 quotedText.append(BLOCKQUOTE_BEGIN);
258 quotedText.append(htmlText);
259 quotedText.append(BLOCKQUOTE_END);
260 quotedText.append(QUOTE_END);
262 quotedText.append(sQuoteBegin)
    [all...]
ComposeActivity.java 182 private static final String EXTRA_QUOTED_TEXT = "quotedText";
465 String toAddress, String body, String quotedText, String subject,
483 if (quotedText != null) {
484 intent.putExtra(EXTRA_QUOTED_TEXT, quotedText);
538 final CharSequence quotedText;
549 quotedText = savedState.getCharSequence(EXTRA_QUOTED_TEXT);
570 quotedText = null;
666 // and we have some quotedText, display that
668 if (quotedText != null) {
669 initQuotedText(quotedText, false /* shouldQuoteText */)
    [all...]

Completed in 368 milliseconds