Don't show "To: " if the only recipients were ccs and bccs.

This commit is contained in:
Jesse Vincent 2010-08-02 03:03:53 +00:00
parent 5bde9618e4
commit f2729fc58b
1 changed files with 3 additions and 0 deletions

View File

@ -107,6 +107,7 @@ public class MessageView extends K9Activity implements OnClickListener
private WebView mMessageContentView;
private LinearLayout mHeaderContainer;
private LinearLayout mAttachments;
private LinearLayout mToContainerView;
private LinearLayout mCcContainerView;
private TextView mAdditionalHeadersView;
private View mAttachmentIcon;
@ -404,6 +405,7 @@ public class MessageView extends K9Activity implements OnClickListener
mDateView.setVisibility(View.GONE);
}
mTimeView.setText(time);
mToContainerView.setVisibility((to != null && to.length() > 0)? View.VISIBLE : View.GONE);
mToView.setText(to);
mCcContainerView.setVisibility((cc != null && cc.length() > 0)? View.VISIBLE : View.GONE);
@ -729,6 +731,7 @@ public class MessageView extends K9Activity implements OnClickListener
mFromView = (TextView)findViewById(R.id.from);
mToView = (TextView)findViewById(R.id.to);
mCcView = (TextView)findViewById(R.id.cc);
mToContainerView = (LinearLayout)findViewById(R.id.to_container);
mCcContainerView = (LinearLayout)findViewById(R.id.cc_container);
mSubjectView = (TextView)findViewById(R.id.subject);
defaultSubjectColor = mSubjectView.getCurrentTextColor();