Correcting issue with message body being the target, regardless of action (reply, forward, compose).

Should target the message body on reply, reply all, and edit draft.
This commit is contained in:
Bradley Young 2008-12-23 02:01:51 +00:00
parent 18c51bae5c
commit 266a3eddcf
1 changed files with 5 additions and 2 deletions

View File

@ -399,11 +399,14 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus
mSourceMessageUid,
mListener);
}
if (ACTION_REPLY.equals(action) || ACTION_REPLY_ALL.equals(action) ||
ACTION_EDIT_DRAFT.equals(action)) {
//change focus to message body.
mMessageContentView.requestFocus();
}
addAddress(mBccView, new Address(mAccount.getAlwaysBcc(), ""));
updateTitle();
//change focus to message body.
mMessageContentView.requestFocus();
}
public void onResume() {