Make the "header" section addressable in messageView (for later hiding)

This commit is contained in:
Jesse Vincent 2010-07-11 15:30:53 +00:00
parent b3e6844e44
commit 0a848d6526
1 changed files with 2 additions and 0 deletions

View File

@ -95,6 +95,7 @@ public class MessageView extends K9Activity implements OnClickListener
private CheckBox mFlagged;
private int defaultSubjectColor;
private WebView mMessageContentView;
private LinearLayout mHeaderContainer;
private LinearLayout mAttachments;
private LinearLayout mCcContainerView;
private TextView mAdditionalHeadersView;
@ -652,6 +653,7 @@ public class MessageView extends K9Activity implements OnClickListener
setContentView(R.layout.message_view);
mHeaderContainer = (LinearLayout)findViewById(R.id.header_container);
mFromView = (TextView)findViewById(R.id.from);
mToView = (TextView)findViewById(R.id.to);