am 37aa2744: am 85d718cb: MessageCompose: quote plain-text body if available, otherwise quote HTML body.

Merge commit '37aa27440bd3d73c9720252078b7507f5be480b1' into eclair-mr2-plus-aosp

* commit '37aa27440bd3d73c9720252078b7507f5be480b1':
  MessageCompose: quote plain-text body if available, otherwise quote HTML body.
This commit is contained in:
Mihai Preda 2009-10-06 15:18:23 -07:00 committed by Android Git Automerger
commit 3a56fec872

View File

@ -1235,7 +1235,11 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus
// used by processSourceMessage()
private void displayQuotedText(String textBody, String htmlBody) {
boolean plainTextFlag = htmlBody == null;
/* Use plain-text body if available, otherwise use HTML body.
* This matches the desired behavior for IMAP/POP where we only send plain-text,
* and for EAS which sends HTML and has no plain-text body.
*/
boolean plainTextFlag = textBody != null;
String text = plainTextFlag ? textBody : htmlBody;
if (text != null) {
text = plainTextFlag ? EmailHtmlUtil.escapeCharacterToDisplay(text) : text;