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

Merge commit '85d718cb0735de9069673fbf9834fa64459c2178' into eclair-mr2

* commit '85d718cb0735de9069673fbf9834fa64459c2178':
  MessageCompose: quote plain-text body if available, otherwise quote HTML body.
This commit is contained in:
Mihai Preda 2009-10-06 14:36:47 -07:00 committed by Android Git Automerger
commit 37aa27440b

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;